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 | tourist | 4009 |
2 | jiangly | 3823 |
3 | Benq | 3738 |
4 | Radewoosh | 3633 |
5 | jqdai0815 | 3620 |
6 | orzdevinwang | 3529 |
7 | ecnerwala | 3446 |
8 | Um_nik | 3396 |
9 | ksun48 | 3390 |
10 | gamegame | 3386 |
# | User | Contrib. |
---|---|---|
1 | cry | 167 |
2 | maomao90 | 163 |
2 | Um_nik | 163 |
4 | atcoder_official | 161 |
5 | adamant | 159 |
6 | -is-this-fft- | 158 |
7 | awoo | 157 |
8 | TheScrasse | 154 |
9 | nor | 153 |
9 | Dominater069 | 153 |
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.