結果
問題 | No.470 Inverse S+T Problem |
ユーザー | kyuna |
提出日時 | 2019-09-03 19:21:26 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 18 ms / 2,000 ms |
コード長 | 3,371 bytes |
コンパイル時間 | 1,132 ms |
コンパイル使用メモリ | 91,936 KB |
実行使用メモリ | 6,400 KB |
最終ジャッジ日時 | 2024-06-01 22:58:40 |
合計ジャッジ時間 | 2,240 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 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 | 1 ms
5,376 KB |
testcase_06 | AC | 18 ms
6,400 KB |
testcase_07 | AC | 17 ms
6,400 KB |
testcase_08 | AC | 17 ms
6,400 KB |
testcase_09 | AC | 2 ms
5,376 KB |
testcase_10 | AC | 2 ms
5,376 KB |
testcase_11 | AC | 2 ms
5,376 KB |
testcase_12 | AC | 2 ms
5,376 KB |
testcase_13 | AC | 2 ms
5,376 KB |
testcase_14 | AC | 2 ms
5,376 KB |
testcase_15 | AC | 2 ms
5,376 KB |
testcase_16 | AC | 2 ms
5,376 KB |
testcase_17 | AC | 2 ms
5,376 KB |
testcase_18 | AC | 2 ms
5,376 KB |
testcase_19 | AC | 1 ms
5,376 KB |
testcase_20 | AC | 2 ms
5,376 KB |
testcase_21 | AC | 2 ms
5,376 KB |
testcase_22 | AC | 1 ms
5,376 KB |
testcase_23 | AC | 2 ms
5,376 KB |
testcase_24 | AC | 2 ms
5,376 KB |
testcase_25 | AC | 2 ms
5,376 KB |
testcase_26 | AC | 2 ms
5,376 KB |
testcase_27 | AC | 2 ms
5,376 KB |
testcase_28 | AC | 4 ms
5,376 KB |
testcase_29 | AC | 2 ms
5,376 KB |
testcase_30 | AC | 3 ms
5,376 KB |
ソースコード
#include <algorithm> #include <iostream> #include <vector> #include <set> using namespace std; struct StronglyConnectedComponents { int id = 0; vector<vector<int>> gg, rg; vector<int> comp, order, seen, depth; StronglyConnectedComponents(int v) : \ gg(v), rg(v), comp(v, -1), seen(v, 0), depth(v, 1) { } void add_edge(int x, int y) { gg[x].emplace_back(y); rg[y].emplace_back(x); } void dfs(int u) { // order, seen seen[u] = true; for (int v: gg[u]) if (!seen[v]) dfs(v); order.emplace_back(u); } void rdfs(int u, int id) { // comp, depth comp[u] = id; for (int v: rg[u]) { if (comp[v] == -1) rdfs(v, id); depth[u] = max(depth[u], depth[v] + 1); } } int build() { for (int u = 0; u < gg.size(); ++u) if (!seen[u]) dfs(u); reverse(begin(order), end(order)); for (int u: order) if (comp[u] == -1) rdfs(u, id++); return id; } vector<vector<int>> make_graph() { vector<vector<int>> g_comp(id); set<pair<int, int>> connect; for (int u = 0; u < gg.size(); ++u) for (int v: gg[u]) { int x = comp[u], y = comp[v]; if (x == y) continue; if (connect.count({x, y})) continue; g_comp[x].emplace_back(y); connect.emplace(x, y); } return g_comp; } int operator[](int k) { return comp[k]; } }; struct TwoSatisfiability : StronglyConnectedComponents { int sz; TwoSatisfiability(int v) : StronglyConnectedComponents(v + v), sz(v) {} void add_if(int u, int v) { // u -> v <=> ¬v -> ¬u add_edge(u, v); add_edge(neg(v), neg(u)); } void add_or(int u, int v) { add_if(neg(u), v); } // u or v <=> ¬u -> v void add_nand(int u, int v) { add_if(u, neg(v)); } // ¬(u ∧ v) <=> u -> ¬v void set_true(int v) { add_edge(neg(v), v); } // v <=> ¬v -> v void set_false(int v) { add_edge(v, neg(v)); } // ¬v <=> v -> ¬v int neg(int x) { return (x + sz) % (sz * 2); } bool solve() { build(); for (int i = 0; i < sz; i++) { if ((*this)[i] == (*this)[neg(i)]) return false; } return true; } bool operator()(int v) { return (*this)[v] > (*this)[neg(v)]; } }; int main() { int n; cin >> n; vector<string> u(n); for (string& ui: u) cin >> ui; if (n > 26 * 2) return !(cout << "Impossible" << endl); TwoSatisfiability ts(n); #define NOT(i) ts.neg(i) for (int i = 0; i < n; i++) for (int j = 0; j < i; j++) { auto &sa = u[i], &sb = u[j]; if (sa.substr(0, 2) == sb.substr(0, 2) || sa[2] == sb[2]) ts.add_nand(i, j); if (sa.substr(0, 2) == sb.substr(1, 2) || sa[2] == sb[0]) ts.add_nand(i, NOT(j)); if (sa.substr(1, 2) == sb.substr(0, 2) || sa[0] == sb[2]) ts.add_nand(NOT(i), j); if (sa.substr(1, 2) == sb.substr(1, 2) || sa[0] == sb[0]) ts.add_nand(NOT(i), NOT(j)); } if (!ts.solve()) return !(cout << "Impossible" << endl);; for (int i = 0; i < n; i++) { if (ts(i)) cout << u[i].substr(0, 2) << " " << u[i].substr(2, 1) << endl; else cout << u[i].substr(0, 1) << " " << u[i].substr(1, 2) << endl; } return 0; }