Hi CF's .
Is there any algorithm that can find the biggest Complete graph inside a graph.
I searched a little but i didn't find any resources , is such algorithm even exist ?
# | User | Rating |
---|---|---|
1 | tourist | 4009 |
2 | jiangly | 3831 |
3 | Radewoosh | 3646 |
4 | jqdai0815 | 3620 |
4 | Benq | 3620 |
6 | orzdevinwang | 3529 |
7 | ecnerwala | 3446 |
8 | Um_nik | 3396 |
9 | gamegame | 3386 |
10 | ksun48 | 3373 |
# | User | Contrib. |
---|---|---|
1 | cry | 164 |
1 | maomao90 | 164 |
3 | Um_nik | 163 |
4 | atcoder_official | 160 |
5 | -is-this-fft- | 158 |
6 | awoo | 157 |
7 | adamant | 156 |
8 | TheScrasse | 154 |
8 | nor | 154 |
10 | Dominater069 | 153 |
Hi CF's .
Is there any algorithm that can find the biggest Complete graph inside a graph.
I searched a little but i didn't find any resources , is such algorithm even exist ?
Name |
---|
Good day to you
Complete graph inside graph is called "Clique" so you can try to search this term and you will find more results.
Anyway algorithms searching for clique (unless specific cases) are exponential :(
Thanks , i'm seeking for O(n) algorithm , but that seems to be impossible right ?
I'm afraid it is impossible :'(
This problem is known to be NP-hard. If someone finds even a polynomial solution, not necessary linear, he will get a Millenium Prize.
So you are telling me that i spent the night trying to solve a millenium prize algorithm ... lol
I assume you are trying to apply this to Today's D, since I was thinking of the same thing. Try drawing example graphs and you might notice some special properties of the cliques.
Okay you got me. I'll try that may be i will come up with something.