problem: Link On Spoj
Code: My Code
Approach: I am using Bibartite graph and got WA and I don't know why!!
№ | Пользователь | Рейтинг |
---|---|---|
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 |
Страны | Города | Организации | Всё → |
№ | Пользователь | Вклад |
---|---|---|
1 | cry | 167 |
2 | Um_nik | 163 |
3 | maomao90 | 162 |
3 | atcoder_official | 162 |
5 | adamant | 159 |
6 | -is-this-fft- | 158 |
7 | awoo | 157 |
8 | TheScrasse | 154 |
9 | Dominater069 | 153 |
9 | nor | 153 |
problem: Link On Spoj
Code: My Code
Approach: I am using Bibartite graph and got WA and I don't know why!!
Название |
---|
Two errors: First, On lines 45-46, you have
what this loop does is copy the vector to a new variable
i
and clear the contents ofi
. To modify the actual adj vector you needSecond, on line 49 you initialize
edges
to sizem + 1
, but then in your for loop you push back (x, y) pairs to the end of the vector, so now you have an edge vector of length2m + 1
and when you iterate over all the edges at the end, you always include an edge pair (0, 0) which isn't right.Fixing those two errors gets AC.