結果
問題 | No.1420 国勢調査 (Easy) |
ユーザー | merom686 |
提出日時 | 2021-03-05 21:42:58 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 50 ms / 2,000 ms |
コード長 | 1,530 bytes |
コンパイル時間 | 951 ms |
コンパイル使用メモリ | 91,844 KB |
実行使用メモリ | 7,168 KB |
最終ジャッジ日時 | 2024-10-07 01:11:01 |
合計ジャッジ時間 | 4,304 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,248 KB |
testcase_02 | AC | 41 ms
5,888 KB |
testcase_03 | AC | 40 ms
5,888 KB |
testcase_04 | AC | 42 ms
5,888 KB |
testcase_05 | AC | 42 ms
5,888 KB |
testcase_06 | AC | 41 ms
5,760 KB |
testcase_07 | AC | 40 ms
5,888 KB |
testcase_08 | AC | 39 ms
5,888 KB |
testcase_09 | AC | 38 ms
5,760 KB |
testcase_10 | AC | 39 ms
5,888 KB |
testcase_11 | AC | 39 ms
5,760 KB |
testcase_12 | AC | 7 ms
5,248 KB |
testcase_13 | AC | 11 ms
5,248 KB |
testcase_14 | AC | 7 ms
5,248 KB |
testcase_15 | AC | 12 ms
5,248 KB |
testcase_16 | AC | 11 ms
5,248 KB |
testcase_17 | AC | 11 ms
5,248 KB |
testcase_18 | AC | 12 ms
5,248 KB |
testcase_19 | AC | 12 ms
5,248 KB |
testcase_20 | AC | 11 ms
5,248 KB |
testcase_21 | AC | 12 ms
5,248 KB |
testcase_22 | AC | 49 ms
7,040 KB |
testcase_23 | AC | 50 ms
7,168 KB |
testcase_24 | AC | 48 ms
7,168 KB |
testcase_25 | AC | 49 ms
7,168 KB |
testcase_26 | AC | 50 ms
7,168 KB |
testcase_27 | AC | 42 ms
7,168 KB |
testcase_28 | AC | 41 ms
7,040 KB |
testcase_29 | AC | 42 ms
7,168 KB |
testcase_30 | AC | 43 ms
7,168 KB |
testcase_31 | AC | 43 ms
7,168 KB |
ソースコード
#include <iostream> #include <vector> #include <string> #include <algorithm> #include <cstdio> #include <cstring> #include <cmath> using namespace std; using ll = long long; struct Graph { struct Vertex { int n, x, f; }; struct Edge { int i, n, y; }; Graph(int n, int m) : v(n, { -1, 0, 0 }), e(m), n(n), m(0) {} void add_edge(int a, int b, int y) { e[m] = { b, v[a].n, y }; v[a].n = m; m++; } void dfs(int i, int x) { if (v[i].f) return; v[i].f = 1; v[i].x = x; for (int j = v[i].n; j >= 0; j = e[j].n) { Edge &o = e[j]; dfs(o.i, x ^ o.y); } } void solve() { for (int i = 0; i < n; i++) { dfs(i, 0); } int b = 1; for (int i = 0; i < n; i++) { for (int j = v[i].n; j >= 0; j = e[j].n) { Edge &o = e[j]; if ((v[i].x ^ v[o.i].x) != o.y) b = 0; } } if (b) { for (int i = 0; i < n; i++) { cout << v[i].x << '\n'; } } else { cout << -1 << endl; } } vector<Vertex> v; vector<Edge> e; int n, m; }; int main() { ios::sync_with_stdio(false); cin.tie(0); int n, m; cin >> n >> m; Graph g(n, m * 2); for (int i = 0; i < m; i++) { int a, b, y; cin >> a >> b >> y; a--; b--; g.add_edge(a, b, y); g.add_edge(b, a, y); } g.solve(); return 0; }