結果
問題 | No.1017 Reiwa Sequence |
ユーザー | kotatsugame |
提出日時 | 2020-04-03 22:37:09 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 2,902 bytes |
コンパイル時間 | 1,197 ms |
コンパイル使用メモリ | 77,192 KB |
実行使用メモリ | 14,840 KB |
最終ジャッジ日時 | 2024-07-03 04:51:11 |
合計ジャッジ時間 | 34,097 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 4 ms
7,040 KB |
testcase_01 | AC | 4 ms
6,912 KB |
testcase_02 | AC | 4 ms
7,168 KB |
testcase_03 | AC | 5 ms
7,040 KB |
testcase_04 | AC | 4 ms
7,040 KB |
testcase_05 | AC | 4 ms
7,168 KB |
testcase_06 | AC | 4 ms
7,040 KB |
testcase_07 | AC | 4 ms
7,040 KB |
testcase_08 | AC | 4 ms
7,040 KB |
testcase_09 | AC | 10 ms
7,040 KB |
testcase_10 | AC | 5 ms
7,936 KB |
testcase_11 | AC | 15 ms
7,040 KB |
testcase_12 | AC | 6 ms
8,960 KB |
testcase_13 | AC | 5 ms
7,552 KB |
testcase_14 | AC | 15 ms
7,040 KB |
testcase_15 | AC | 40 ms
6,912 KB |
testcase_16 | AC | 15 ms
6,912 KB |
testcase_17 | AC | 345 ms
7,168 KB |
testcase_18 | AC | 16 ms
7,040 KB |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | WA | - |
testcase_26 | WA | - |
testcase_27 | WA | - |
testcase_28 | WA | - |
testcase_29 | WA | - |
testcase_30 | WA | - |
testcase_31 | WA | - |
testcase_32 | WA | - |
testcase_33 | AC | 6 ms
7,424 KB |
testcase_34 | AC | 4 ms
7,040 KB |
testcase_35 | AC | 4 ms
7,040 KB |
testcase_36 | AC | 4 ms
7,040 KB |
testcase_37 | AC | 5 ms
6,912 KB |
testcase_38 | AC | 5 ms
7,040 KB |
testcase_39 | AC | 4 ms
6,912 KB |
testcase_40 | AC | 50 ms
11,592 KB |
testcase_41 | AC | 51 ms
11,712 KB |
testcase_42 | AC | 48 ms
11,556 KB |
testcase_43 | AC | 50 ms
11,524 KB |
testcase_44 | AC | 50 ms
11,712 KB |
testcase_45 | AC | 50 ms
11,584 KB |
testcase_46 | AC | 49 ms
11,444 KB |
testcase_47 | AC | 48 ms
11,496 KB |
testcase_48 | AC | 87 ms
11,136 KB |
testcase_49 | AC | 76 ms
14,840 KB |
testcase_50 | AC | 67 ms
8,984 KB |
testcase_51 | AC | 4 ms
7,040 KB |
testcase_52 | WA | - |
testcase_53 | WA | - |
コンパイルメッセージ
main.cpp:11:1: warning: ISO C++ forbids declaration of 'main' with no type [-Wreturn-type] 11 | main() | ^~~~
ソースコード
#include<iostream> #include<vector> using namespace std; int N; long A[150000]; long B[150000]; vector<int>ids[150001]; pair<int,int>check[300001]; pair<int,pair<int,int> >check2[450001]; bool vis[450001]; main() { cin>>N; for(int i=0;i<N;i++) { cin>>A[i]; ids[A[i]].push_back(i); } if(N<=18) { for(int I=1;I<1<<N;I++)for(int J=I&I-1;J;J=J-1&I) { long sum=0; for(int k=0;k<N;k++) { if(I>>k&1) { if(J>>k&1)B[k]=A[k]; else B[k]=-A[k]; } else B[k]=0; sum+=B[k]; } if(sum==0) { cout<<"Yes"<<endl; for(int k=0;k<N;k++)cout<<B[k]<<(k+1==N?"\n":" "); return 0; } } cout<<"No"<<endl; return 0; } vector<pair<int,int> >X; for(int i=1;i<=150000;i++) { if(ids[i].size()==1) { X.push_back(make_pair(i,ids[i][0])); } else if(ids[i].size()>=2) { cout<<"Yes"<<endl; for(int k=0;k<N;k++) { if(ids[i][0]==k)cout<<i; else if(ids[i][1]==k)cout<<-i; else cout<<0; cout<<(k+1==N?"\n":" "); } return 0; } } for(int i=0;i<X.size();i++)for(int j=i+1;j<X.size();j++) { int s=X[i].first+X[j].first; pair<int,int>q=make_pair(X[i].second,X[j].second); if(!vis[s]) { vis[s]=true; check[s]=q; } else { pair<int,int>p=check[s]; cout<<"Yes"<<endl; for(int k=0;k<N;k++) { if(p.first==k||p.second==k)cout<<A[k]; else if(q.first==k||q.second==k)cout<<-A[k]; else cout<<0; cout<<(k+1==N?"\n":" "); } return 0; } if(s<=150000&&!ids[s].empty()) { cout<<"Yes"<<endl; for(int k=0;k<N;k++) { if(q.first==k||q.second==k)cout<<A[k]; else if(A[k]==s)cout<<-A[k]; else cout<<0; cout<<(k+1==N?"\n":" "); } return 0; } } for(int i=0;i<X.size();i++)for(int j=i+1;j<X.size();j++)for(int k=j+1;k<X.size();k++) { int s=X[i].first+X[j].first+X[k].first; pair<int,pair<int,int> >q=make_pair(X[i].second,make_pair(X[j].second,X[k].second)); if(!vis[s]) { vis[s]=true; check2[s]=q; } else { if(s<=300000&&check[s].second>0) { pair<int,int>p=check[s]; cout<<"Yes"<<endl; for(int k=0;k<N;k++) { if(p.first==k||p.second==k)cout<<A[k]; else if(q.first==k||q.second.first==k||q.second.second==k)cout<<-A[k]; else cout<<0; cout<<(k+1==N?"\n":" "); } return 0; } else { pair<int,pair<int,int> >p=check2[s]; cout<<"Yes"<<endl; for(int k=0;k<N;k++) { if(p.first==k||p.second.first==k||p.second.second==k)cout<<A[k]; else if(q.first==k||q.second.first==k||q.second.second==k)cout<<-A[k]; else cout<<0; cout<<(k+1==N?"\n":" "); } return 0; } } if(s<=150000&&!ids[s].empty()) { cout<<"Yes"<<endl; for(int k=0;k<N;k++) { if(q.first==k||q.second.first==k||q.second.second==k)cout<<A[k]; else if(A[k]==s)cout<<-A[k]; else cout<<0; cout<<(k+1==N?"\n":" "); } return 0; } } }