The topic where you can tell how you liked the challenge, & how you solved it.
Thanks again Agade, pb04, Magus, reCurse for this amazing contest.
The topic where you can tell how you liked the challenge, & how you solved it.
Thanks again Agade, pb04, Magus, reCurse for this amazing contest.
I think i will stay between 20th and 30th.
My code is just a simple genetic algorithm with an evaluation function. Not much to say, others players will have better things to say
Iāll write a specific PM for the contest creation.
For personal reasons, iād like to have your feedback on the contest !
Mean Max was a Good game, but it was difficult to find ways to improve in heuristic.
I spent several days trying various things without success. (as usual)
My best idea was to divide map in 4 zones to find the most interesting one. Map zones were sorted by total available water.
Finished about 200 rank in Silver League
BigUP
I think it was the best contest i have been in (4 total) so big thanks to the 4 creators, and it was the first where I finished in gold
My strategy is very simple, it is similar to the streams as I got most of what I have from it, but I only had if/else statements and found the best wreck/tank with the use of a eval function, it did so:
The wrecks water * 1000
72th .
I wonāt give strategies, I had many problems with C++ (weird runtime errors without any error message, just a Timeout. May be due to server changes?). I lost 2+ days with that and in the end I changed to a basic C# Genetic Algorithm bot, with the first Eval I thought (score based on water, distances, etc), I literally submitted just 2 times when it worked, no parameter fiddling at all.
But as a feedback:
So I would like to thank all four developers for that great challenge, that they did for all of us without expecting nothing in exchange.
Thank you to the 4 creators of the game. Some very nice ideas there. Doing this on your spare time is a great gift to all of us. THANK YOU.
So I finished 124. Iām pretty satisfied considering the simplicity of my code. I used python, 450 lines.
Leaving wood was not so easy with just a dummy heuristic. The key was to realise that speed of the reaper is essential. So, I replaced my thrust control by a full thrust at 300 and there we are bronze. Then MadKnight shared his ā1.5 trickā to compensate for the car inertia: targetX = targetX-vx*1.5, same for Y. This gave wonderful results, probably not so good compared to the control you can get with a true simulation, but good enough for a simple bot.
My strategy is only based on simple evaluation functions based on distance calculation. There is almost no āif spaghettiā with arbitrary constants. I used a lot a method I called distanceRatio. Considering two entities A and B, calling A.distanceRatio(B) will return an number between 0 and 1. It returns 1 if the distance is 0 and it returns 0 if the distance is 12000 (2*radius). Here is the strategy:
Take the list of wrecks and remove wreck covered by oil, a tanker or a doof. Remove wreck that are close to a doof with enough rage to spill oil on it.
If two wrecks are covering each other, remove them and create a new one whose content is their sum. Place the new wreck in the merging area. This makes the reaper goes on areas where he might be able to fetch 2 of water at once.
I tried to make the reaper go into the area where there was more water. If there are three wrecks that contain 4 close to each other, you want to go there instead of going to a single wreck with 7. To do this I recompute the content of each wreck in the following way, wreck.content = sum(otherWreck.content * wreck.distanceRatio(otherWreck) for otherWreck in all wreck). Two wrecks that are close to each other will have their content added up. Two wreck that are far away will have just a bit of their content added up. The content of each wreck more or less represents the water I can hope fetching by going there.
To select the wreck. I tried to calculate the probable water I might get from each wreck. My idea was to say that each player can have a share of the water, once the three of them are there, bumping each other on top of the wreck. The share of each player is playerReaper.distanceRatio(wreck). To get my share I did: wreck.water * myShare / sumOfAllPlayerShares. I go to the wreck where my share is the biggest.
I tried to favor wrecks close to my destroyer, so that my reaper is never too far from it. The idea being that you want to be the first on a wreck your destroyer breaks. I again used distanceRatio, the final score of a wreck is: share*reaper.distanceRatio(destroyer).
The doof simply follows the opponent that has the highest score. The destroyer goes to the best tanker. The best tanker is calculated in the same way as the best wreck for the reaper. Go to the tanker where my share is the biggest. Shares are computed using the distance between the tanker and the reapers.
Doing proper skills was my key to gold. I favored oil. Do not spill oil if there is already some on the wreck or if my reaper is close to this wreck. I used nitro on opponentsā reaper that were covering wrecks. Only use nitro if I have 90 of rage. Not sure itās better.
Seeing that speed was premium. I tried to implement a path finding approach to avoid collisions. I divided the aread into cells of 800. Filled the cell with the entities and used a simple BFS. My units started to avoid the opponents, but were much slower. It was worse. So I put back thrust to 300 and enjoyed the mess.
Thanks for a great contest. I had a lot of fun as usual.
200th,
I was near the 100th bar Sundayās evening and some better IAs got the place.
As the very first contest I participated in on Codingame, Iām pretty happy it was such an interesting game where Genetic algorithms and heuristic based IAs can compete together until gold (if i remember well Mad Max is not a GA as well).
Wreck selection
My IA was also totally deterministic and consumed something like 100microseconds to answer and with an heuristic based on 4 parameters : the number of turns needed to reach a wreck, the age of the last oil used on the wreck, how much wrecks are overlapping this one and how much water this wreck and the overlapping ones has.
Doof
My key idea was to attack the first opponent but I finally changed for the option āattack whoever you can but attack the first in you have the choiceā option. It makes the doof have smoother changes of target when the opponents score changes suddenly.
Destroyers
It simply targets the tanker next to my reaper with a minimal amount of water.
Skills
Same as Ilovebugs, oil first but only if you didnāt target this wreck a turn before.
I used Nitro grenade in two ways: defensive way, targeting my own reaper if a threatscore was reached (based on distance to ennmy looters), offensive way, randomly harassing the opponent with some grenades just in front of its reaper.
Next improvements
I guess what my IA lacks was small fixes of direction when there is collision in the path to the choosen wreck. Iāll improve that in the multi !
At the very beginning I thought I would write the program in C++ to gain performance over simulations, but since my IA doesnāt need any real simulation thereās no need to select a language for its performance. I kept C++ but you can have the same results as mine in Lua, Python or Brainfuck (goodluck). My thoughts about this is that languages like C# with Linq or Java with streams are way easier to get the same results that I got in C++.
Anyway, thank you Agade, pb4, Magus and reCurse !
I finished 7th but I am one of the creators. I will write something short as Iām sure the top players will write some nice postmortems.
Search Algo
It was pretty obvious to a lot of people that this game needs to be approached by some kind of search algorithm. For one thing the game has a lot of collisions going on that would be very hard to take into account in a heuristic bot. I had a buggy game engine ready before the contest (reimplementing helped us find referee bugs, Iām glad werenāt present in the final game). I took my time to fix the last major issue in my engine on Tuesday.
I searched with Simulated Annealing (SA). I never really used genetic algorithms (GA). I figure SA is inspired from Physics and GA is inspired from Biology, it is therefore obvious that SA is better. (@CG where is the Kappa emoji?)
Handling of skills
In my search I handled skills in the dumbest way I could think of: If SKILL is selected (10% chance) then the reaper tries to tar itself (to become really heavy+high speed and knock people away), the destroyer tries to throw a grenade on the Reaper, to push everyone away from it, and the Doof tries to throw oil on the nearest wreck (either the centre of the wreck or the closest point that allows to cover the entire wreck. I felt that partial oils that prevent looting for only 1 turn could be a massive waste of rage).
This is obviously not optimal but in many games it was enough to use up my rage. It occurs to me that I should probably have tried to grenade around the reaper to give it a speed boost.
Eval
I didnāt make much effort on my eval as I didnāt even make a local arena for the contest.
1 point per unit of water
-0.1 points per unit of enemy water
1e-3*MyRage
-1e-5*Dist(reaper,nearest_wreck) if there is a wreck
-1e-5*Dist(reaper,destroyer)
-2e-5*max(0,Dist(destroyer,nearest_tanker)-200-tanker_radius-destroyer_radius) (Get close but donāt encourage closer than 200)
1e-3*Number_Of_Tankers (Donāt destroy tankers)
1e-5*Doof_Speed
-1e-5*Dist(Doof,enemy_reaper)
Where enemy_reaper is the reaper of the enemy with the closest score to mine. I figure that annoying the player with the score closest to mine is most likely to affect the final outcome of the game. Extreme example: Why annoy the player who is 20 points ahead of me when I can try to keep the other player a few points below me?
I dissuade breaking tankers because I want my AI to destroy tankers as late as possible. Ideally my reaper will harvest the wreck on the same turn as the tanker is destroyed. Why destroy it early and give other players the opportunity to contest the wreck and/or oil it?
I evaluated as Eval(state after first move)+0.95*Eval(state after second move)+ā¦
I think I have a big margin for improvement in my eval as I made very little effort to improve it.
Dummy
I had only: Reaper goes to nearest wreck (-its speed according to the popular CSB formula). Destroyer and Doof wait. For me this dummy is a very safe assumption.
I might have some room for improvement in this aspect but I suspected and found that making assumptions about enemy movement can easily be worse than assuming a WAIT.
Optimisation of Search
I found that the quality of the search affected the strength of the AI significantly. Performance is therefore probably very important but I focused only on the search itself. I wrote some code to take 20 states from real games and locally Search those states over and over to look at the average score. Using this metric I optimised my SAās parameters. I used an exponential cooling schedule:
current_temp=Max_Temperature*exp(-Temperature_Exp_Decay*fraction_time_spent)
Max_Temperature=100
Temperature_Exp_Decay=10
fraction_time_spent=time_spent/time_limit
Every 100 iterations I reset the current solution to the best one ever seen. I also found that searching with moves described as (target,acc) was better than (angle,acc). I suspected this because if you have a sequence of N (angle,acc), when you change the first angle you end up at a very different location, so āsmall mutationsā arenāt so small anymore which goes against the principle of SA to search in the neighbourhood of a solution.
I searched 4 turns ahead, this is probably a very important parameter but I didnāt test any other values.
Conclusion
In the end me and pb4 decided to stop improving our AIs to ensure we didnāt finish in the top3. We wanted to avoid devaluing finishing on the podium. āI am first but there are two people in front of meā.
BlitzProg, 51th
Aww. what a ride. Worked day and night for this. Prepared myself, took days off, went all out and did everything I could. Iāve learnt a lot, this was great, though a bit frustrating. The bosses were so strong.
Wood 3 -> Wood 1
Go to the last entity of the list.
Wood 1 -> Bottom Bronze
Switch from PHP, Proper C++ algorithm. Dumb dummy consisting of targeting neighboring wrecks and targets. Doof was given arbitrary coordinates.
Bottom Bronze -> Top Bronze
Thought a bit more about the AI, made it so it would make smarter choices. Think of selecting wrecks more carefully, targeting tanks with more waters and sometimes try to use grenade to move opponents away from wrecks.
Top Bronze -> Middle Silver
Simulator done, basic Monte Carlo that just evals over his score minus leading opponentās score.
Middle Silver -> Bottom Silver
My 2nd Genetical Algorithm ever : done, same eval as above. Iāve coded it so it would evolve against a dummy AI because i thought it was the most important at that point! I didnāt stay disappointed for long, though.
Bottom Silver -> Top end Silver (2nd)
The curse of the 2nd position starts!
GA shows how good it is. Merely factoring distance to closest wreck and closest destroyer made it jump over the entire league, stopping just behind the boss.
Top end Silver -> top Gold
My doof wasnāt factored in the eval, so with my genetic evolution it was roaming aimlessly.
Tweaked eval so it would get a slight penalty the further away he is from opponent reaper. Useless doof immediately became very annoying for the opponent. I rank somewhere in the 60th gold.
Top Gold -> Top end Gold (2nd)
The curses of the 2nd position continues.
Superb results with doof additions. more results from finally simulating skills, something my AI was completely oblivous about until then. - also adding ability to cover wreckages with oil.
2nd Gold -> 2nd Gold
Things I tried:
None of that made any noticeable difference, though it did help me reaching that annoying 2nd gold place much faster and much more reliably. Smallest gap with boss was 0.2 point.
2nd Gold -> 3nd Gold
14th
I copied the referee to simulate the game. In hindsight that may wasnāt the best idea, as my simcount is quite low compared to others (about 3500 single steps in the best cases, also because I used C#).
For speedup I did two things: cache collisions and assign objects to fields on the a grid for faster prechecking.
For caching I just compute all possible collisions at the begin of the turn and later only update the objects involved in one collision.
For the grid collision I split the total board in regions of size 1500x1500 (so I get 8x8 regions on the map, ignoring the edge, where only tankers can be - this makes me blind for collisions in that area, but they arenāt that important). The size is because that fits in a 64 bit integer.
I then create a surrounding rectangle for each object at the beginning of the turn as follows:
// xMin, xMax, yMin, yMax are in range 0..7 for grid coordinates
// don't forget that the objects are moving when computing the limits
ulong xMask = (1UL << (xMax + 1)) - 1;
xMask ^= (1UL << xMin) - 1;
Grid = 0;
for (int y = yMin; y <= yMax; y++)
Grid |= xMask << (8 * y);
Later for ever collision check I can do:
if ((unit1.Grid & unit2.Grid) == 0) continue; // no collision
That checks, if the objects can even be in the same region with a single bitoperator and a comparison. For most cases that is false and I can just skip the more expensive check.
In most cases it makes sense, that the reaper goes to a wreck or the destroyer to a tanker. So I donāt genereate most of my moves in a fully random manner, but select a target depending on the distance and type of the target (the reaper might go to a tanker as well - I can destroy that and make it a wreck before the reaper arrives, but wrecks are more likely to be a good target).
I realized, that the speed is equal to the max speed in many cases, so I choose that more often.
Grenades and tar are placed randomly, as it is hard to see what will happen. But for oil I use a heuristic to selects a good target, as my bot often partially covered a wreck, allowing the opponent reaper to just move a bit to the oncovered part or even split oil accross the map without any opponent or wreck in sight, wasting my rage.
I did not write a genetic algorithm. Instead I randomly choose one looter, assign some semi-random moves (depth 4) and keep it, if itās better. In the case, that I wanted to spend more rage on my new plan, than the plans for the other looters allowed, I just set their actions to WAITs.
I basicly used the same code to predict the enemy, that I then use for myself, but with some restrictions. The enemy assumes, that I wait myself, doesnāt try to block me and canāt use skills (these predictions were to unreliable). The enemies donāt know about each otherās plans. I use 20% of my time for each enemy and the remaining 60% for myself.
The most important factor is water of course. So I massively reward the gain of it.
Then comes the distance of my reaper to wrecks. Here I use the amount of water, squared distance, distance to other wrecks nearby and whether Iām closer to the wreck than the opponent reapers (euclidian distance, the attempt of a more precise estimation including the speed made it worse). The first round is more important than later ones, as the enemy prediction become increasingly unreliable.
I do the same scoring for my opponent too and subtract it with a certain factor. The opponent closer to me in score is more important (so Iāll try to at least save the second place, when one player has much more water than I have, while the other is slightly behind).
I did a little offline training to check, how important different things like closeness to a wreck and having much rage are. I think it gave me 1 or 2 points on the scoreboard, but at some point stopped helping - other arena bots are to different from mine and getting better against myself isnāt the same as getting better against other bots.
It was a fun game, but sometimes hard to see whatās going on. The complexity didnāt allow heuristics at the top. The referee was very helpful. Much respect for getting such a complex game almost bugfree from the beginning on (only a misplaced exit condition on crashing players).
Thanks for reaching silver in the stream and not struggling to even reach Bronze.
I donāt see a problem with the contest creators participating. They did a great job creating a new contest for us - for free. The least we can do to honor that is letting them participate for fun and not complain about that.
43rd legend, C #
I started writing the refereeās class pattern during Wood 3, and I tested it in bronze league. The C # Linq tool is a good way to quickly test many filtering and sorting possibilities.
In Silver League, I used a brute force and a simulation on each wreck making them a target for my reaper, to see which one will maximize my score after 6 laps.
In the gold league, I added to the combinations of bruteforce, an angle parameter for the reaper, a parameter for tankers with a particular sort to all parameters.
The biggest and the greatest moment of the contest for me is when my bot has been selected to be the MadMax, the Ultimate Gold Boss, and it makes me very, very proud and happy.
Many thanks to Agade, Magus, Pb4 and Recurse and all CG staff for their work and for providing us with this unique and unforgettable moment of fun, of coding and gaming experience.
Big Up
First of all, I want to thank Magus, Agade, pb4 and reCurse for the time they put to build an engaging contest, thank you guys !
I ended up #46th.
This was the first time I used a search algo with simulation in a contest, with all my previous attempts relying on heuristics/if spaghetti. I used a GA algorithm.
The only thing I want to add to the discussion is the relevance of the search algorithm. I spent most of the contest twiking the evaluation function score parameters, writing more and more complex and creative ways to score the board. All of this with almost no changes (and very often with very bad results) in my AI performance.
So, what did make a difference?
I was getting really frustrated by not getting past wood 1 after a lot of work in the eval function, and then I changed my GA depth from 6 to 3. Magically skipped 2 leages to reach silver. I couldnāt belive it.
Then changing the pool size from 50 to 6 gave me another boost, and finally on saturday I made another change that allowed me to reach Legend: improve performance by ignoring every collision that donāt involve my own looters.
I still couldnāt believe the difference between the top players score and my own (it will end up being like 11+, which is a lot) so I was eager to read their postmortem. After reading Agadeās (which is always very interesting, thanks @Agade) I think I can conclude that the evaluation function is absolutely secondary (in fact I tried Agadeās eval in my GA, and my version beated it 88% of the times), with the search function optimization being what makes all the difference. It doesnāt matter if you have an optimum that is very high if you canāt ever get close to it, right?
That is really the most important thing I learned in this contest that I will try to put in practice in the next ones.
Thanks again to the creators and the CG team for the amazing experience and learning opportunity !
19 Legend , Java
Based on experience of CSB and PCR and the referee, the physics engine was pretty simple to write (all my tests were green on the 1st saturday night).
Then I used jvisualvm to grind the perf ladder (keeping my tests green obviously, they were a life saver a bunch of times)
Nothing fancy here except the early exit by doing projection of entities (not as smart as EulerscheZahl):
double posx1Min = Math.min(position.x-radius, remainingTime*(position.x+speed.vx)-radius);
double posx2Max = Math.max(u.position.x+u.radius, remainingTime*(u.position.x+u.speed.vx)+u.radius);
if (posx1Min > posx2Max) return Collision.NO_COLLISION;
double posx1Max = Math.max(position.x+radius, remainingTime*(position.x+speed.vx)+radius);
double posx2Min = Math.min(u.position.x-u.radius, remainingTime*(u.position.x+u.speed.vx)-u.radius);
if (posx2Min > posx1Max) return Collision.NO_COLLISION;
double posy1Min = Math.min(position.y-radius, remainingTime*(position.y+speed.vy)-radius);
double posy2Max = Math.max(u.position.y+u.radius, remainingTime*(u.position.y+u.speed.vy)+u.radius);
if (posy1Min > posy2Max) return Collision.NO_COLLISION;
double posy1Max = Math.max(position.y+radius, remainingTime*(position.y+speed.vy)+radius);
double posy2Min = Math.min(u.position.y-u.radius, remainingTime*(u.position.y+u.speed.vy)-u.radius);
if (posy2Min > posy1Max) return Collision.NO_COLLISION;
gave me ~2000*3 simulations in 30s
**Note : I think there was something amiss with timeout, itās the 1st time I have to set the timeout limit so low 30s instead of 44 in the other contests **
Then came the fitness function and it was a nightmare
There is so many things happening that i could not (and I still canāt) really understood what was good and not (except some basic facts like score)
I reimplemented the eval class many times and, at the end, came with something pretty simple stupid but seemed ok.
I want to congratulate the fab4 and CG for the contest, it was really good.
I look forward to be a member of a team to create a new one with this quality.
First of all whoever came up with the game idea, good job, well done. Itās probably the most entertaining game here at the moment.
Canāt wait to see it released, maybe i will finally have some time for it.
The skills could have used a bit more tweaking maybe, but aside from that little tidbit, it doesnāt matter. Itās a great game to have on this website.
Too bad not all 7000 registered users joined the contest. We didnāt even have half of them enter.
The submission lag was annoying though and i canāt image what it would have looked like with those 7000 all participating.
My Contest experience:
Wrote a bot that could get #65 gold and then i messed everything up with greedy submits trying to get more. Ended up #256 overall. I donāt care about this rank though, for me it was either legend or nothing.
Had a busy work week so my strategy was improvise on the go.
Wood 3 i used a powerful algorithm that got me to Wood 2:
in the starting code i printed out for the reaper:
print āx y 300ā
and it got me #2 in Wood 2 until i finally had time to try something out few days later.
I went for very basic heuristics, add a few lines to the starting code, thatās it really. Got 300 silver with Python3.
Switched over to Java to use the stream bot, improved it a little bit and got gold, which i kept improving to a bot that can get top 100 gold easy. Thatās about it, i just i wish had better luck on the last submit, or maybe should have been less greedy. Oh well whatever.
Finished 196th in Gold
This was my first contest. I am new to CodingGame.
Thank you for this wonderful contest, it was a very good learning experience for me.
I tried simple if/else logic as well as genetic algorithms (my very first attempt).
I failed miserably on GA version, it would not even beat my out if/else ā I would be very thankful to anyone who did GA - if they can share their fitness function or would want to review mine, which is pretty much the referee code.
For if/else logic -
reaper would look for the wreck where it has best chance i.e. the one nearest to me and farther than opponent reapers & doofs. if enemy is low on rage, I did not care about doofs. Also, if an opponent is leading and in range, my reaper will use skill on them.
destroyer would look for nearest tanker within watertown radius if there are no wrecks. Else fights the best opponentās reaper
doof would chase the best opponent and use skill if there is a wreck near any of the opponent
Thank you!
Hi everybody,
Thanks to Magus, PB4, Agade and Recurse for that great great contest. A lot of fun and hard work have been there during all these days.
Starting day
Oh, I was very sick. I got a fever of about 40Ā°C. I read the subject, then couldnāt think much about it because of a very strong headach. Too bad, because the real pleasure in those CG contests, is to think about problems and solutions. So I stayed to bed and thought about how not to think about the contest
Wood3 to Wood1
Saturday, the fever was always there (about 39Ā°C), but I could code and I wanted to. A very light code (300 LOC)
Wood1 to Bronze (44th / 383)
No change needed : The same wood code entered to Bronze on saturday PM 7:00 (Saturday Night Fever !!)
Bronze (23th / 767)
To stay in top of the ranking before the Silver league opens, I added some features. My fever was lower (38Ā°) and I could even write a better version code, properly reading all informations :
Silver league opens (38th / 545)
As my bot was in the top of Bronze league, passing to Silver league was immediate on monday evening. On tuesday, there was the CodingHub in Lyon. There I met Saelyos (yes he is real), and now I can confirm that the best french coder on that challenge (#4) lives in Lyon :D.
End of Silver league (34th / 759)
Nearly the same code stayed on top 40 till the Gold league opens on wednesday evening.
Gold league (12th / 250) on Legend opening
To maintain my top ranking in Gold league, I had to add some new improvements :
Top Gold Till the end of the contest (final rank 6th Gold / global 55th)
I couldnāt pass in Legend Guild because I didnāt have a simulation working. On the last day (sunday), I tried to code the complete referee (in C), but collisions functions didnāt work at all. From the beginning of the contest, I chose not to invest my time on developping the simulator, because I knew it would be a lot of time for me. So I prefered to use my time to perfect my heuristics, try other criterias (often not very good), and play with my magic numbers. My last feature was to kick opponents from a wreck with my Destroyer or my Reaper :
Again, this contest was a very good one. I had a lot of fun and having my heuristics very stable from the beginning made my progression not too hard. I donāt regret not to have code the simulation, because it would have been a lot of pain without any garantee of success. Iāll code it when multi player game opens.
Thanks to all you people, to CG, and to the developpement team
Hi!
A great time consuming and challenging contest
I think the creators should participate.
Post mortem: (Feel free to mention errors)
8th and C#.
First non C++!
Note: Pretty nice to test small pieces of code on the tech.io/snippet runner Faster than creating a new console app just to try stuffā¦
Not a lot to say about my AI. I basically reused most of my code from the COTC contest. (see post-mortem here)
For those who might be interested in the different codes that I posted during the contest:
pb4_TestCode01
(first 24 hours of the contest)
was a fully heuristic bot written for early tests of the game design
pb4_TestCode02
(next 48 hours of the contest)
was a basic GA bot, written for more advanced tests of the game design
I spent a very low amount of time on this AI during design: the motivation to improve simply isnāt there when the test-leaderboard contains only 6 contestantsā¦
pb4
(from tuesday morning to the end of the contest)
was my main code, written during the contest
I am curious to have feedback on the following:
Given a 1v1v1 game, we totally excluded 1v1 variants. Thoughts ?
Heuristics-friendliness of the game ? Iām waiting for more post-mortems, but I hoped that most search-based strategies (randomized or not) would benefit from heuristics-based guidance
217th (hence Gold), F#.
Many, many thanks for this lovely contest. The atmosphere and the art work contributed a lot of fun. The heavy rate of collisions gave creativity a chance over stochastic algorithms. The subtle effects of the skills and their paper-scissor-stone structure generated a bunch of possible strategies.
I had only about 20 hours available for this contest, and I wanted to test F# on it. I started learning this language in June, and I must thank Codingame for this. My personal objectives were Gold (got it!), number 1 in F# (I did 2nd) and good laughs (got it, beyond expectations).
The few hours I had and the chaotic rhythm of collisions incited me NOT to compute them. I chose a structured, progressive approach:
This approach reduces the search space a lot. It also makes it easy to add new strategies. It could have been improved with some prediction of the collisions. No time for it.
The only area where I can see an option for improvement is in the delay for ranking. It was very hard to know if a strategy was good or not, because one had to wait for hours before any significant result.
Again, many, many thanks for this really entertaining contest!