issues
search
battlecode
/
battlecode21
27
stars
14
forks
source link
Reduce number of matches per autoscrim round
#298
Closed
j-mao
closed
3 years ago
j-mao
commented
3 years ago
Old algorithm produces, for N teams:
10 matches in each of the N/5 blocks of 5
N more "scatter" matches
Total: 3N, which is around 600 for N=200
New algorithm:
6 matches in each of the N/4 blocks of 4
N/2 more "scatter" matches
Total: 2N, which is around 400 for N=200
n8kim1
commented
3 years ago
looks good!
Old algorithm produces, for N teams:
New algorithm: