I probably have found a bug, when reviewing one of my lost matches:
I won this match, but it was marked as a lost in overall stats: https://www.codingame.com/replay/516743182
probably a display issue fixed with a refresh. Can you reproduce it? Can you tell the battle number in the submit?
Only the replay number above. Arenāt you able to use it to finde the game?
One more thing:
How does the ranking works? Ii is little bit inconvenient, that single algorithm ranks from rank 90 to 400.
I meant where you found the issue in the first place:
āit was marked as a lost in overall statsā
Is it still marked as lost? Maybe you submitted again and we canāt check it anymore.
Ranking is based on TrueSkill. With that many bots in the Coders Strike Back arena with very close behavior, itās unfortunately not unusual to see a bit of volatility in the rankings.
I cant figure out where I have to turn faster than the bot at checkpoints. The bot turns faster than me.
Dont laugh at me i started using this website today and i literally have no idea what im supposed to do
You can take a look at this page:
https://www.codingame.com/playgrounds/55547/how-to-get-started-on-codingame
Also, Coders Strike Back has a tutorial at the start. Did you take it?
can you tell me what i can improve it try my best
my coding:i
f(nextCheckpointAngle>90 or(nextCheckpointAngle< - 90 ))then;
thrust = 0;
else
thrust = 100;
pseudo code:
if nextCheckpointAngle > 90 or nextCheckpointAngle < -90 then
thrust = 0
else
thrust = 100
end if
print x y thrust
Is there a way to reset the progress to start back from zero? I havenāt played this challenge in years and it would be nice to be presented with all the basics once again, but I see no way to go back to the 1st steps.
Hey !
No. Sadly, thereās no way to reset your progressā¦
Just make a new account if you want to experience anew
Thanks. Good idea. I will do that until I catch up into the level Iām on.
i am in broze leage and cant spot where to use opponent co ordinate or how to use collusion?
any idea i m using C
In bronze league, no matter where opponent is, try to just be quicker when you reach a checkpoint. Brake when youāre close to it, itās enough too beat the boss.
Iām pretty bad at math and I canāt figure out how to compute the āangleToCheckpointā variable that disappeared in goldā¦ Can someone push me in the right direction ?
Take a look at this: http://files.magusgeek.com/csb/csb_en.html in the āRotationā section.
I have a behaviour issue because of the evaluation function of my pods in gold league. I tried genetic evolution, and my pod score depends on his distance from the next checkpoint.
When my pod almost reach a checkpoint, and if the next one is in the opposite side, the pod brakes, and is almost still when it reaches the checkpoint. Of course, if it does not brake, it will be further from the next checkpoint, and will have a worse score.
Any idea on how to handle this behaviour ?
The strongest players in Legend league seems to have the same evaluation function, so how do their pods adapt to this case ?
Thanks !!
Add a variable to the evaluation based on how many checkpoints have been passed, and make it larger than the worst-case distance to next checkpoint
I did it. It doesāt change the behaviour, the pod try to reach the checkpoint without increasing the distance from the next checkpoint. So it stops when it reaches it.
It cannot reach the next one in 10 steps, so the variable (added to the evaluation based on how many checkpoints have been passed) doesnāt involve the previous behaviour
Finally, I added an scoring depending on the angle to the next checkpoint, and it solved the pod braking problem. I share, maybe this will help someone !
I can now focus on my blocker pod creation