This just popped up after more than 2 month pause of contests. The round is scheduled at 15:00 UTC May 22, 2023.
# | User | Rating |
---|---|---|
1 | tourist | 4009 |
2 | jiangly | 3821 |
3 | Benq | 3736 |
4 | Radewoosh | 3631 |
5 | jqdai0815 | 3620 |
6 | orzdevinwang | 3529 |
7 | ecnerwala | 3446 |
8 | Um_nik | 3396 |
9 | ksun48 | 3388 |
10 | gamegame | 3386 |
# | User | Contrib. |
---|---|---|
1 | cry | 164 |
1 | maomao90 | 164 |
3 | Um_nik | 163 |
4 | atcoder_official | 161 |
5 | -is-this-fft- | 158 |
6 | awoo | 157 |
7 | adamant | 156 |
8 | TheScrasse | 154 |
8 | nor | 154 |
10 | Dominater069 | 153 |
This just popped up after more than 2 month pause of contests. The round is scheduled at 15:00 UTC May 22, 2023.
Name |
---|
I can not enter with old topcoder arena
Does anyone experience the same problem?
I had the same issue, switching to
HTTP Tunnel A
seems to fix it.Thank you as well! Now let's hope we'll get to 50 participants in total, with these issues xD
What was the solution to Div2 Medium?
Lets say Team i wins against every Team j such that i < j. And to tie two teams is since they will have a result between them so we can tie 3 teams instead, so team 3 wins over team 4 team 4 wins over team 5 and team 5 wins over team 3. So that way team 3,4 and 5 all have same number of points.
Implementation wise set point[i][j] = 3 for i<j and point[j][i] = 0 and point [3][4], point[4][5] and point[5][3] = 3 and point [3][5] = 0 would give a correct answer.
Nice logic!
In div2 C — HockeyLeagueDraft — would greedy with 2 multisets work (by attack/defense, defense/attack)?
Yes, but you also need to keep track of index of player since that is also a deciding factor.