How to solve this problem? https://codeforces.net/edu/course/2/lesson/8/4/practice/contest/290943/problem/D
# | 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 | 166 |
2 | maomao90 | 163 |
2 | Um_nik | 163 |
4 | atcoder_official | 161 |
5 | adamant | 160 |
6 | -is-this-fft- | 158 |
7 | awoo | 157 |
8 | TheScrasse | 154 |
9 | nor | 153 |
9 | Dominater069 | 153 |
How to solve this problem? https://codeforces.net/edu/course/2/lesson/8/4/practice/contest/290943/problem/D
Name |
---|
Why can't u start bfs from each node and when u see distance > 2 u stop bfs?
Because there may be a case where each vertex in the graph is connected to each other
But have u tried? When everything is connected we have n * (n + 1) / 2 edges in total, but m is not that high.
but what if graph is a hedgehog
I didn't get what u said
Here is my solution which actually passed.
The idea is that you should look at edges and count pairs from both ends.
The only problem we should take care is that we counted pairs who are adjacent, but also 2 edges far away, we should take care of that.
To fix that, we search for all 3 size cycles, and subtract all members of that cycle from the answer and that's it.
Probably 3 size cycle searching can be done in linear time, idk how, I used easy method (can't tell the time complexity of it, probably it is linear as well or closer to linear or test cases are weak), which worked. See code for details.
This will take $$$O(n^2)$$$ if the input graph is a star with center being the node $$$\frac{n}{2}$$$. Half of the nodes will pass $$$j\leq i$$$ condition which will then have the other half elements pass $$$k\leq j$$$ condition ( $$$j$$$ being $$$\frac{n}{2}$$$ in this graph, almost all of the times)
Do you know how to find the number of 3 size cycles in linear time? I was not able to figure it out since I'm weak at graphs and just wrote brute force to verify my idea by getting TLE, but got AC.