結果
問題 | No.3024 等式 |
ユーザー | kotatsugame |
提出日時 | 2020-03-09 07:55:02 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 1,297 bytes |
コンパイル時間 | 949 ms |
コンパイル使用メモリ | 78,080 KB |
実行使用メモリ | 113,152 KB |
最終ジャッジ日時 | 2024-11-07 20:46:33 |
合計ジャッジ時間 | 9,713 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 7 ms
9,728 KB |
testcase_01 | AC | 7 ms
9,600 KB |
testcase_02 | AC | 7 ms
9,600 KB |
testcase_03 | AC | 7 ms
9,600 KB |
testcase_04 | AC | 7 ms
9,600 KB |
testcase_05 | AC | 7 ms
9,472 KB |
testcase_06 | AC | 12 ms
9,728 KB |
testcase_07 | AC | 12 ms
9,984 KB |
testcase_08 | AC | 14 ms
10,112 KB |
testcase_09 | AC | 14 ms
9,984 KB |
testcase_10 | AC | 14 ms
9,984 KB |
testcase_11 | AC | 13 ms
9,984 KB |
testcase_12 | AC | 241 ms
18,304 KB |
testcase_13 | AC | 238 ms
18,304 KB |
testcase_14 | AC | 361 ms
22,528 KB |
testcase_15 | AC | 363 ms
23,296 KB |
testcase_16 | AC | 309 ms
20,736 KB |
testcase_17 | AC | 255 ms
18,816 KB |
testcase_18 | TLE | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
コンパイルメッセージ
main.cpp:16:1: warning: ISO C++ forbids declaration of 'main' with no type [-Wreturn-type] 16 | main() | ^~~~
ソースコード
#include<iostream> #include<set> #include<vector> using namespace std; long gcd(long a,long b){return b?gcd(b,a%b):a;} pair<long,long>norm(long a,long b) { long g=gcd(a,b); if(g!=1)a/=g,b/=g; if(b<0)a=-a,b=-b; return make_pair(a,b); } set<pair<long,long> >M[1<<17]; int N; long A[7]; main() { cin>>N; for(int i=0;i<N;i++) { cin>>A[i]; M[1<<i].insert(norm(A[i],1)); } for(int i=1;i+1<1<<N;i++) { if(__builtin_popcount(i)==1)continue; for(int x=i;;x=x-1&i) { for(int y=i&~x;;y=y-1&i&~x) { for(const pair<long,long>&X:M[x]) { for(const pair<long,long>&Y:M[y]) { M[i].insert(norm(X.first*Y.second+Y.first*X.second,X.second*Y.second)); M[i].insert(norm(X.first*Y.second-Y.first*X.second,X.second*Y.second)); M[i].insert(norm(-X.first*Y.second+Y.first*X.second,X.second*Y.second)); M[i].insert(norm(X.first*Y.first,X.second*Y.second)); M[i].insert(norm(X.first*Y.second,X.second*Y.first)); M[i].insert(norm(Y.first*X.second,Y.second*X.first)); } } if(y==0)break; } if(x==0)break; } } for(int i=1;i<1<<N;i++)for(int j=1;j<1<<N;j++) { if(i&j)continue; for(const pair<long,long>&X:M[i]) { if(M[j].find(X)!=M[j].end()) { cout<<"YES"<<endl; return 0; } } } cout<<"NO"<<endl; }