Advertisement
Avasam

any% in 2m 32s 230ms by PeterAfro - 1st place

Jun 29th, 2021
267
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.12 KB | None | 0 0
  1. Step 1: Run was worth points, so it was valid, can be ignored
  2. Step 2: All runs are valid, can be ignored
  3. Step 4: Does not apply here, can be ignored
  4. Step 7: Is not an IL, does not apply
  5. Step 8: Run was worth points, so it was in your top 60, can be ignored
  6.  
  7. Step 3: ceil(5*0.005) = 1 So let's only remove the last run (Darko's)
  8. --------------------------------------
  9. That leaves the meat of the algorithm:
  10. Step 5: (all time values are in seconds)
  11.  
  12. The mean is 156.355s
  13. Your run is 152.230s
  14. 5.1: Your run's signed deviation from the mean: 156.355 - 152.230 = 4.125s
  15.  
  16. Last counted run (8BitisGr8): 159.120s
  17. Lowest (unsigned) deviation: 159.120 - 156.355 = 2.765s
  18. 5.2: Adjusted deviation: 4.125 + 2.765 = 6.89s
  19.  
  20. 5.3: normalized deviation: 6.89 / 2.765 ~= 2.49186256781
  21.  
  22. certainty adjustment: 1 - 1 / (4 - 1) = 0.666...
  23. ("e^" means Natural Log)
  24. 5.4: e^(2.49186256781 * 0.666) -1 ~= 4.25710486939
  25. --------------------------------------
  26. Now we give a bit of a bonus if the run is extra extra long
  27. Step 6:
  28. length bonus: 1 + (152.230 / 43200) ~= 1.00352384259
  29. Your points: 4.25710486939 * 1.00352384259 * 10 ~= 42.7210623684
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement