結果
問題 | No.470 Inverse S+T Problem |
ユーザー | paruki |
提出日時 | 2016-12-20 01:22:45 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,913 bytes |
コンパイル時間 | 1,973 ms |
コンパイル使用メモリ | 181,776 KB |
実行使用メモリ | 6,948 KB |
最終ジャッジ日時 | 2024-06-01 22:31:29 |
合計ジャッジ時間 | 3,038 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | AC | 3 ms
6,816 KB |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | AC | 6 ms
6,944 KB |
testcase_07 | AC | 8 ms
6,940 KB |
testcase_08 | AC | 8 ms
6,940 KB |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | AC | 3 ms
6,940 KB |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | AC | 3 ms
6,940 KB |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | AC | 2 ms
6,940 KB |
testcase_25 | AC | 4 ms
6,940 KB |
testcase_26 | AC | 3 ms
6,944 KB |
testcase_27 | AC | 3 ms
6,944 KB |
testcase_28 | AC | 4 ms
6,940 KB |
testcase_29 | AC | 3 ms
6,940 KB |
testcase_30 | AC | 3 ms
6,940 KB |
ソースコード
#include "bits/stdc++.h" using namespace std; #define FOR(i,j,k) for(int (i)=(j);(i)<(int)(k);++(i)) #define rep(i,j) FOR(i,0,j) #define each(x,y) for(auto &(x):(y)) #define mp make_pair #define mt make_tuple #define all(x) (x).begin(),(x).end() #define debug(x) cout<<#x<<": "<<(x)<<endl #define smax(x,y) (x)=max((x),(y)) #define smin(x,y) (x)=min((x),(y)) #define MEM(x,y) memset((x),(y),sizeof (x)) #define sz(x) (int)(x).size() typedef long long ll; typedef pair<int, int> pii; typedef vector<int> vi; typedef vector<ll> vll; const string ALPHA="abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ"; int N; string U[100001]; map<string, int> ms; set<string> us; int def[52]; string x[52], y[52]; void ng() { cout << "Impossible" << endl; exit(0); } void f(int cu) { if(cu == 52) { if(sz(us) == N) { rep(i, N)cout << x[i] << ' ' << y[i] << endl; exit(0); } else { return; } } int non = 1; char c = ALPHA[cu]; us.insert(string(1, c)); rep(i, N) if(!def[i]){ string &u = U[i]; def[i] = 1; if(u[0] == c) { non = 0; x[i] = u.substr(0, 1); y[i] = u.substr(1, 2); if(us.count(y[i]) + us.count(x[i]) == 0) { us.insert(y[i]); f(cu + 1); us.erase(y[i]); } } if(u[2] == c) { non = 0; x[i] = u.substr(0, 2); y[i] = u.substr(2, 1); if(us.count(x[i]) + us.count(y[i]) == 0) { us.insert(x[i]); f(cu + 1); us.erase(x[i]); } } def[i] = 0; } us.erase(string(1, c)); f(cu + 1); } int main(){ ios::sync_with_stdio(false); cin.tie(0); cin >> N; rep(i, N)cin >> U[i]; if(N > 52) { ng(); } f(0); ng(); }