I am struggling very hard with this easy problem. I am not sure how to solve it at all.
How should I go to it? Should I form a graph?
Ie
Email -> Account ID -> Email -> Account ID etc...?
Thanks
# | 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 | Um_nik | 163 |
2 | maomao90 | 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 |
I am struggling very hard with this easy problem. I am not sure how to solve it at all.
How should I go to it? Should I form a graph?
Ie
Email -> Account ID -> Email -> Account ID etc...?
Thanks
Name |
---|
Yes, you can create a graph with vertexes of emails and names. But it's important to create only one vertex for same emails, but different vertexes for same names — it's required by problem. Now, lets create edges — you have to connect account name with it's emails.
Now you have to find emails that belongs to some account. Just use BFS/DFS to process entire connectivity component and add them to some list.
It's easy to solve using
std::map
inC++
. Just createmap<int, string>
to get name of vertex by it's ID andmap<string, int>
to get ID by it's name. And again, dont forget that same account names must be different vertexes.