結果
問題 | No.470 Inverse S+T Problem |
ユーザー | けー |
提出日時 | 2017-04-15 00:23:25 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,070 bytes |
コンパイル時間 | 1,910 ms |
コンパイル使用メモリ | 179,896 KB |
実行使用メモリ | 10,624 KB |
最終ジャッジ日時 | 2024-06-01 22:49:48 |
合計ジャッジ時間 | 7,173 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
10,624 KB |
testcase_01 | AC | 2 ms
5,376 KB |
testcase_02 | AC | 2 ms
5,376 KB |
testcase_03 | AC | 2 ms
5,376 KB |
testcase_04 | AC | 2 ms
5,376 KB |
testcase_05 | AC | 2 ms
5,376 KB |
testcase_06 | AC | 26 ms
5,376 KB |
testcase_07 | AC | 654 ms
5,376 KB |
testcase_08 | AC | 104 ms
5,376 KB |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | AC | 14 ms
5,376 KB |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | AC | 20 ms
5,376 KB |
testcase_20 | AC | 2 ms
5,376 KB |
testcase_21 | AC | 2 ms
5,376 KB |
testcase_22 | AC | 2 ms
5,376 KB |
testcase_23 | AC | 2 ms
5,376 KB |
testcase_24 | AC | 2 ms
5,376 KB |
testcase_25 | TLE | - |
testcase_26 | -- | - |
testcase_27 | -- | - |
testcase_28 | -- | - |
testcase_29 | -- | - |
testcase_30 | -- | - |
ソースコード
#include<bits/stdc++.h> #define int long long const int inf=8938103643641919514ll; const int mod=1000000007; const int dd[]={0,-1,0,1,0}; using namespace std; int a,b,c,d; char p[100000][3]; unordered_set<string> se; vector<string> ve; void saiki(int u){ if(u==a){ for(int i=0;i<a;i++) cout<<ve[i*2]<<" "<<ve[i*2+1]<<endl;; exit(0); } string s,t; s.push_back(p[u][0]); t.push_back(p[u][1]); t.push_back(p[u][2]); if(se.find(s)==end(se)&&se.find(t)==end(se)){ se.insert(s); se.insert(t); ve.push_back(s); ve.push_back(t); saiki(u+1); se.erase(s); se.erase(t); ve.erase(rend(ve).base()); ve.erase(rend(ve).base()); } s.clear(); t.clear(); s.push_back(p[u][0]); s.push_back(p[u][1]); t.push_back(p[u][2]); if(se.find(s)==end(se)&&se.find(t)==end(se)){ se.insert(s); se.insert(t); ve.push_back(s); ve.push_back(t); saiki(u+1); se.erase(s); se.erase(t); ve.erase(rend(ve).base()); ve.erase(rend(ve).base()); } } signed main(){ int i,j; cin>>a; for(i=0;i<a;i++) cin>>p[i]; saiki(0); cout<<"Impossible"<<endl; }