| # | User | Rating |
|---|---|---|
| 1 | jiangly | 3810 |
| 2 | Benq | 3676 |
| 3 | Kevin114514 | 3655 |
| 4 | maroonrk | 3463 |
| 5 | strapple | 3447 |
| 6 | Um_nik | 3387 |
| 7 | heuristica | 3322 |
| 8 | turmax | 3317 |
| 9 | tourist | 3307 |
| 10 | jiangbowen | 3291 |
| # | User | Contrib. |
|---|---|---|
| 1 | Qingyu | 156 |
| 2 | nik_exists | 150 |
| 2 | maspy | 150 |
| 4 | Um_nik | 143 |
| 5 | Errichto | 139 |
| 6 | adamant | 137 |
| 7 | AmShZ | 135 |
| 8 | maroonrk | 133 |
| 9 | BledDest | 132 |
| 10 | qwexd | 129 |
|
+1
ratings updated! |
|
0
How do you check if you’re marked as unrated? Does it not display your rank or is there text somewhere that says it? |
|
0
https://ide.usaco.guide/OXKfvhJptJSF_8NYFqW input: 1 4 5 4 3 1 2 7 100000 1 The compiler here outputs 'YES'. |
|
0
I found it! It arises from repeating from the 'r+1' index, which neglects index 'r'. Here's a test case that outputs "YES" on yours, which is incorrect: a=[101,100,011,001], b=[010,111,10101010,01]. Taking a look at index 3, $$$10101010$$$ of course cannot be created with XOR of any of the elements in array $$$a$$$. However, your algorithm looks at 101^100^011==010, and skips to index 4 without taking a look at index 3. |
|
0
If I understand correctly, in the problem statement, it says the XOR operation can be performed at most once for each index. |
|
0
Great problems! |
| Name |
|---|


