1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
|
# Lucky Winner
#
# Suppose there are following coins arranged on a table in a line in random
# order.
#
# £1, 50p, 1p, 10p, 5p, 20p, £2, 2p
#
# Suppose you are playing against the computer. Player can only pick one coin
# at a time from either ends. Find out the lucky winner, who has the larger
# amounts in total?
use experimental :cached;
# Compute the max amount of money a player can get when both players play
# optimal. Note that this algorithm only computes the amount the player will
# win if both the player and computer play optimal. This game is a min-max
# game. Your optimize your gain by simultaneously minimizing the gain of your
# opponent.
sub max-amount(@coins) is cached {
if (@coins.elems < 2) {
return @coins.sum();
}
return @coins.sum() - min(max-amount(@coins[1..*-1]),
max-amount(@coins[0..*-2]));
}
# Convert coins on the table to cents
my @coins = [100, 50, 1, 10, 5, 20, 200, 2];
# Player wins
my $player-win = max-amount(@coins);
# Computer wins
my $computer-win = @coins.sum() - $player-win;
say 'Player wins: ', $player-win, ' cents.';
say 'Computer wins: ', $computer-win, ' cents.';
if ($player-win > $computer-win) {
say 'Player wins!';
} elsif ($player-win < $computer-win) {
say 'Computer wins!';
} else {
say 'Remise, neither player or computer wins.';
}
|