結果
問題 | No.1420 国勢調査 (Easy) |
ユーザー | e869120 |
提出日時 | 2021-03-05 21:46:23 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,315 bytes |
コンパイル時間 | 821 ms |
コンパイル使用メモリ | 88,384 KB |
実行使用メモリ | 14,592 KB |
最終ジャッジ日時 | 2024-10-07 01:20:35 |
合計ジャッジ時間 | 12,030 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 6 ms
9,600 KB |
testcase_01 | AC | 6 ms
9,600 KB |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | WA | - |
testcase_26 | WA | - |
testcase_27 | WA | - |
testcase_28 | WA | - |
testcase_29 | WA | - |
testcase_30 | WA | - |
testcase_31 | WA | - |
ソースコード
#include <iostream> #include <set> #include <map> #include <cmath> #include <queue> #include <vector> #include <string> #include <algorithm> #include <functional> using namespace std; int N, M; int A[1 << 18], B[1 << 18], Y[1 << 18]; int Answer[1 << 18]; int col[1 << 18]; bool used[1 << 18], flag = false; vector<pair<int, int>> G[1 << 18]; void dfs(int pos, int dep) { used[pos] = true; col[pos] = dep; for (int i = 0; i < G[pos].size(); i++) { int to = G[pos][i].first, cost = G[pos][i].second; if (used[to] == true) { if (col[to] != (cost ^ dep)) flag = true; return; } else { dfs(to, (dep ^ cost)); } } } int main() { // Step 1. 入力 cin >> N >> M; for (int i = 1; i <= M; i++) { cin >> A[i] >> B[i] >> Y[i]; } // Step #2. ビットごとに計算 for (int i = 0; i < 30; i++) { for (int j = 1; j <= N; j++) G[j].clear(); for (int j = 1; j <= N; j++) used[j] = false; for (int j = 1; j <= M; j++) { int t = (Y[j] / (1 << i)) % 2; G[A[j]].push_back(make_pair(B[j], t)); G[B[j]].push_back(make_pair(A[j], t)); } dfs(1, 0); for (int j = 1; j <= N; j++) { if (col[j] == 1) Answer[j] += (1 << i); } } // Step #3. 出力 if (flag == true) { cout << "-1" << endl; } else { for (int i = 1; i <= N; i++) cout << Answer[i] << endl; } return 0; }