結果
問題 | No.470 Inverse S+T Problem |
ユーザー | ciel |
提出日時 | 2016-12-20 03:19:38 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 202 ms / 2,000 ms |
コード長 | 1,799 bytes |
コンパイル時間 | 841 ms |
コンパイル使用メモリ | 83,880 KB |
実行使用メモリ | 7,168 KB |
最終ジャッジ日時 | 2024-06-01 22:35:25 |
合計ジャッジ時間 | 2,154 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,812 KB |
testcase_01 | AC | 3 ms
6,940 KB |
testcase_02 | AC | 2 ms
6,940 KB |
testcase_03 | AC | 2 ms
6,944 KB |
testcase_04 | AC | 2 ms
6,940 KB |
testcase_05 | AC | 2 ms
6,944 KB |
testcase_06 | AC | 2 ms
6,944 KB |
testcase_07 | AC | 2 ms
6,940 KB |
testcase_08 | AC | 2 ms
6,944 KB |
testcase_09 | AC | 2 ms
6,940 KB |
testcase_10 | AC | 2 ms
6,940 KB |
testcase_11 | AC | 2 ms
6,944 KB |
testcase_12 | AC | 2 ms
6,944 KB |
testcase_13 | AC | 2 ms
6,944 KB |
testcase_14 | AC | 2 ms
6,940 KB |
testcase_15 | AC | 3 ms
6,940 KB |
testcase_16 | AC | 2 ms
6,944 KB |
testcase_17 | AC | 2 ms
6,944 KB |
testcase_18 | AC | 2 ms
6,940 KB |
testcase_19 | AC | 2 ms
6,940 KB |
testcase_20 | AC | 2 ms
6,940 KB |
testcase_21 | AC | 3 ms
6,940 KB |
testcase_22 | AC | 2 ms
6,944 KB |
testcase_23 | AC | 2 ms
6,940 KB |
testcase_24 | AC | 2 ms
6,940 KB |
testcase_25 | AC | 2 ms
6,940 KB |
testcase_26 | AC | 2 ms
6,940 KB |
testcase_27 | AC | 2 ms
6,944 KB |
testcase_28 | AC | 2 ms
6,940 KB |
testcase_29 | AC | 202 ms
7,168 KB |
testcase_30 | AC | 2 ms
6,944 KB |
ソースコード
#include <iostream> #include <string> #include <vector> #include <stack> #include <algorithm> #include <cstring> using namespace std; #define MAX_V 10000 #define NOT(n) (((n)+V)%(V*2)) #define ADD(a,b) add_edge(NOT(a),b),add_edge(NOT(b),a) int V; vector<int> G[MAX_V]; vector<int> rG[MAX_V]; vector<int> vs; bool used[MAX_V]; int cmp[MAX_V]; void add_edge(int from, int to){ G[from].push_back(to); rG[to].push_back(from); } void dfs(int v) { used[v] = true; for (int i = 0; i < G[v].size(); i++) { if (!used[G[v][i]]) dfs(G[v][i]); } vs.push_back(v); } void rdfs(int v, int k) { used[v] = true; cmp[v] = k; for (int i = 0; i < rG[v].size(); i++) { if (!used[rG[v][i]]) rdfs(rG[v][i], k); } } int scc() { memset(used, 0, sizeof(used)); vs.clear(); for (int v = 0; v < V; v++) { if (!used[v]) dfs(v); } memset(used, 0, sizeof(used)); int k = 0; for (int i = vs.size() - 1; i >= 0; i--) { if (!used[vs[i]]) rdfs(vs[i], k++); } return k; } int main(){ int i; cin>>V; if(V>52*52){ cout<<"Impossible"<<endl; return 0; } vector<string>v(V); for(int i=0;i<V;i++)cin>>v[i]; for(int i=0;i<V;i++)for(int j=i+1;j<V;j++){ if(v[i].substr(0,1)==v[j].substr(0,1) || v[i].substr(1,2)==v[j].substr(1,2))ADD(NOT(i),NOT(j)); if(v[i].substr(0,1)==v[j].substr(2,1) || v[i].substr(1,2)==v[j].substr(0,2))ADD(NOT(i),j); if(v[i].substr(0,2)==v[j].substr(1,2) || v[i].substr(2,1)==v[j].substr(0,1))ADD(i,NOT(j)); if(v[i].substr(0,2)==v[j].substr(0,2) || v[i].substr(2,1)==v[j].substr(2,1))ADD(i,j); } V*=2; scc(); V/=2; for(i=0;i<V;i++)if(cmp[i]==cmp[i+V])break; if(i<V)cout<<"Impossible"<<endl; else for(i=0;i<V;i++){ if(cmp[i]>cmp[i+V]){ cout<<v[i].substr(0,1)<<' '<<v[i].substr(1,2)<<endl; }else{ cout<<v[i].substr(0,2)<<' '<<v[i].substr(2,1)<<endl; } } }