Beefy Boxes and Bandwidth Generously Provided by pair Networks
Come for the quick hacks, stay for the epiphanies.
 
PerlMonks  

Re: Algorithm Help

by TGI (Parson)
on Jan 19, 2010 at 01:50 UTC ( [id://818089]=note: print w/replies, xml ) Need Help??


in reply to Algorithm Help

You might want to edit your post to clarify that weight does not affect the probability of a given selection.

Two ideas

You could pre-calculate (perhaps write to data files if there are many) all possible items and their strength/weight values. If your list of possible weight values is dense (few skipped values) put an array of items at each weight at a coresponding index in a master array. So:

my @items = ( # 0 [ 'sword', 'mace', 'turtle' ], # 1 [ '+1 sword', '+1 mace', '+1 turtle' ], # 2 [ 'frost sword', 'frost mace', 'frost turtle', 'flame sword', 'flame mace', 'flame turtle' ], ... );

If the set of weights is sparse, you might use a hash instead.

Then if you want to select a random item of weight 3-5, you can do:

my @in_range = map @{$items[$_]}, 3..5; my $item = $in_range[ int rand( @in_range ) ];

Another way, would be:

  1. Pick a random weight value in your range. eg 7
  2. Prefix list is sorted by weight, and starts with an entry for ['' => 0].
  3. Find last prefix with weight less than or equal to weight. Eg. Pointy (6)
  4. Pick Random Prefix up to max prefix from last step. eg. Acid (4)
  5. Set plus value equal to desired weight - prefix weight. Eg. Plus = 7 - 4 = 3
  6. Result: Acid +3 Sword


TGI says moo

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://818089]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others lurking in the Monastery: (4)
As of 2024-04-25 14:14 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found