10 Percent Fight

Decision and strategy, simulations and probability models, card and board games, ...
Post Reply
User avatar
uws8505
Posts: 58
Joined: Tue Sep 30, 2008 3:13 pm
Location: South Korea

10 Percent Fight

Post by uws8505 »

In the game of Ten Percent Fight, you control players A, B, and C and the computer (CPU, or whatever) controls players X, Y, and Z.

At your turn, for each of your player, you can decide which opponent player to attack.

For example, you can choose all A, B, C to attack X, or A to X, B to Y, and C to Z.

If one of your player(M) attacks another(N), HP of N is reduced by Ceiling(0.1 * HP of M).

But if one of computer's player(N) attacks one of yours(M), HP of M is only reduced by Floor(0.1 * HP of N), so you have some advantage on this.

If one of your player dies(HP <= 0) or all of computer's players die, the game is over. You win in the latter case.

You take the first turn. The starting HPs are as follows:

Problem 1
A - 100
B - 100
C - 120
X - 110
Y - 110
Z - 125

Problem 2
A - 170
B - 170
C - 185
X - 190
Y - 190
Z - 190

Maximize the total of your HPs when you win.
Math and Programming are complements
PerfectOr
Posts: 1
Joined: Sat Jan 06, 2018 11:59 am

Re: 10 Percent Fight

Post by PerfectOr »

nice problem :D
Post Reply