| # | 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 |
|
0
I wasted so much time optimizing this. Post-contest, my friend showed me their brute force got AC. Absolute pain. |
|
0
seems like an n^2 solution to me, but it got ac. Can anyone explain why ? |
|
0
I saw some people solving B using just brute force, and I don't know why it works! |
|
0
|
|
0
Dear Codeforces team, I am appealing the skipped verdicts on my submissions for both Problem A (Add or Xor) and Problem B (Line Segment) in Round 1035 (Div. 2). I want to clearly state that I did not cheat, collaborate, or share my code with anyone. Below is a detailed explanation of my approaches and supporting context: Problem A (2119A – Add or Xor): The task is to transform a to b using +1 (cost x) and XOR with 1 (cost y) at minimum cost. I modeled this as a shortest path problem, where each integer is a node and operations define the edges with associated costs. This directly maps to Dijkstra's algorithm , I used my own Dijkstra template, which I regularly use in contests. My code uses a priority_queue and visited-distance tracking, and I limited the state space to a fixed size. I now understand that many others independently arrived at a similar Dijkstra solution, which likely caused this mass flagging. But the logic and template used are part of my personal style, not copied from any contestant. Problem B (2119B – Line Segment): My approach for this problem was if the actual dist is in between the max dist from the source and min dist from the source then we can reach the terminal point so It would say Yes else No. This approach was derived independently during the contest . It's a clean mathematical solution and not something I copied. And my code style is always the same . I kindly request a manual review of my submissions. I understand the difficulty of handling mass similarity cases, but I hope my explanation clarifies that I competed honestly, with my own logic and coding style. Submission IDs: |
|
0
https://codeforces.me/contest/2121/submission/327441927 for which test case is this failing? can anyone help me figure it out? |
| Name |
|---|


