結果
問題 | No.2247 01 ZigZag |
ユーザー | kotatsugame |
提出日時 | 2023-03-17 22:11:35 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 957 bytes |
コンパイル時間 | 776 ms |
コンパイル使用メモリ | 75,920 KB |
実行使用メモリ | 6,948 KB |
最終ジャッジ日時 | 2024-09-18 11:16:05 |
合計ジャッジ時間 | 2,324 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,376 KB |
testcase_02 | AC | 5 ms
5,376 KB |
testcase_03 | WA | - |
testcase_04 | AC | 4 ms
5,376 KB |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | AC | 3 ms
5,376 KB |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | AC | 4 ms
5,376 KB |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | AC | 3 ms
5,376 KB |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | AC | 5 ms
5,376 KB |
testcase_19 | AC | 5 ms
5,376 KB |
testcase_20 | AC | 4 ms
5,376 KB |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | AC | 4 ms
5,376 KB |
testcase_25 | WA | - |
testcase_26 | WA | - |
testcase_27 | WA | - |
testcase_28 | WA | - |
testcase_29 | WA | - |
testcase_30 | WA | - |
testcase_31 | AC | 3 ms
5,376 KB |
testcase_32 | WA | - |
testcase_33 | WA | - |
testcase_34 | WA | - |
testcase_35 | WA | - |
testcase_36 | WA | - |
testcase_37 | AC | 3 ms
5,376 KB |
testcase_38 | AC | 3 ms
5,376 KB |
testcase_39 | WA | - |
testcase_40 | AC | 5 ms
5,376 KB |
testcase_41 | AC | 2 ms
5,376 KB |
testcase_42 | AC | 2 ms
5,376 KB |
testcase_43 | AC | 2 ms
5,376 KB |
testcase_44 | AC | 2 ms
5,376 KB |
testcase_45 | WA | - |
testcase_46 | WA | - |
testcase_47 | AC | 2 ms
5,376 KB |
testcase_48 | AC | 2 ms
5,376 KB |
testcase_49 | AC | 2 ms
5,376 KB |
testcase_50 | AC | 2 ms
5,376 KB |
testcase_51 | AC | 1 ms
5,376 KB |
ソースコード
#include<iostream> #include<vector> #include<algorithm> using namespace std; int N,M,K; int main() { cin>>N>>M>>K; if(K==0) { if(N==0)cout<<string(M,'1')<<endl; else if(M==0)cout<<string(N,'0')<<endl; else cout<<-1<<endl; return 0; } if(N==0||M==0) { cout<<-1<<endl; return 0; } vector<pair<int,int> >ans; for(int t=0;t<2;t++) { vector<pair<int,int> >now; now.push_back(make_pair(t,1)); int n=N,m=M; if(t==0)n--; else m--; for(int k=0;k<K;k++) { int v=now.back().first; v=1-v; now.push_back(make_pair(v,1)); if(v==0)n--; else m--; } if(n<0||m<0)continue; //0 if(n>0) { int id=0; while(now[id].first!=0)id++; now[id].second+=n; } //1 if(m>0) { int id=(int)now.size()-1; while(now[id].first!=1)id--; now[id].first+=m; } ans=now; break; } if(ans.empty())cout<<-1<<endl; else { for(pair<int,int>p:ans)for(int i=0;i<p.second;i++)cout<<p.first; cout<<endl; } }