n is the number of vertex and Bruteforce is O(3^n)..Thanks in advance.
(it's a additional exercise of SRM487D1_550pt)
# | User | Rating |
---|---|---|
1 | tourist | 3857 |
2 | jiangly | 3747 |
3 | orzdevinwang | 3706 |
4 | jqdai0815 | 3682 |
5 | ksun48 | 3591 |
6 | gamegame | 3477 |
7 | Benq | 3468 |
8 | Radewoosh | 3463 |
9 | ecnerwala | 3451 |
10 | heuristica | 3431 |
# | User | Contrib. |
---|---|---|
1 | cry | 165 |
2 | -is-this-fft- | 161 |
3 | Qingyu | 160 |
4 | Dominater069 | 158 |
5 | atcoder_official | 157 |
6 | adamant | 155 |
7 | Um_nik | 151 |
8 | djm03178 | 150 |
8 | luogu_official | 150 |
10 | awoo | 148 |
n is the number of vertex and Bruteforce is O(3^n)..Thanks in advance.
(it's a additional exercise of SRM487D1_550pt)
void exgcd(int a,int b,int &x,int &y)
{ if (b) {exgcd(b,a%b,y,x);y-=x*(a/b);} else x=1,y=0; } int main() { int x,y; for(int i=1;i<=1000;i++) for(int j=i;j<=1000;j++) { exgcd(i,j,x,y); assert(max(abs(x),abs(y))<=max(i,j)); } }
Sometimes I just want to review a topic which I have ever read before,but there is no convenient approach to find it unless it is still appeared in "recent actions".
(SRM 514 250) In this problem n or m will be 1 and there is a elegant conclusion to solve this problem -- if you have a (1,even),you can go any girds,and if you have a (1,odd),you can go to any girds(x,y) which x+y is even
Name |
---|