I've written the solution for 543 B,I think it works fine but gets time limit on test 8.I ckecked and it doesn't pass inputing phase.How can it happen with 3000 numbers?
| # | User | Rating |
|---|---|---|
| 1 | Benq | 3792 |
| 2 | VivaciousAubergine | 3647 |
| 3 | Kevin114514 | 3603 |
| 4 | jiangly | 3583 |
| 5 | turmax | 3559 |
| 6 | tourist | 3541 |
| 7 | strapple | 3515 |
| 8 | ksun48 | 3461 |
| 9 | dXqwq | 3436 |
| 10 | Otomachi_Una | 3413 |
| # | User | Contrib. |
|---|---|---|
| 1 | Qingyu | 157 |
| 2 | adamant | 153 |
| 3 | Um_nik | 147 |
| 3 | Proof_by_QED | 147 |
| 5 | Dominater069 | 145 |
| 6 | errorgorn | 141 |
| 7 | cry | 139 |
| 8 | YuukiS | 135 |
| 9 | TheScrasse | 134 |
| 10 | chromate00 | 133 |
| Name |
|---|



Auto comment: topic has been updated by luka25 (previous revision, new revision, compare).
Auto comment: topic has been updated by luka25 (previous revision, new revision, compare).
Use faster I/O. You can either use
ios_base::sync_with_stdio(0);cin.tie(0);at the beginning of your program and continue using cin/cout or use scanf/printf.will it help on 3000 numbers?
If the problem with your code is not the algorithm, it should make a significant difference. Input with these techniques can be more than 5 times faster.
special for you fixed code .
research BFS implementation. for example
thanks very much,so was the problem in implementation of bfs?when i checked it failed during imputing and didn't even reach bfs part
i didn't consider map is logN just changing to unordered_map fixed it.
Your code awesome beautiful!!! Are you understand why std::map — TLE, std::unordered_set — AC ??
I used map instead of array because it can be cleared more easily, didn't think of it being too slow.