n is the number of vertex and Bruteforce is O(3^n)..Thanks in advance.
(it's a additional exercise of SRM487D1_550pt)
№ | Пользователь | Рейтинг |
---|---|---|
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 |
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
Название |
---|