結果

問題 No.1420 国勢調査 (Easy)
ユーザー magstamagsta
提出日時 2021-03-05 22:18:19
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 264 ms / 2,000 ms
コード長 1,386 bytes
コンパイル時間 1,037 ms
コンパイル使用メモリ 78,628 KB
実行使用メモリ 11,520 KB
最終ジャッジ日時 2024-10-07 02:32:57
合計ジャッジ時間 6,783 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,820 KB
testcase_01 AC 2 ms
6,816 KB
testcase_02 AC 107 ms
7,000 KB
testcase_03 AC 105 ms
6,912 KB
testcase_04 AC 107 ms
7,008 KB
testcase_05 AC 110 ms
6,912 KB
testcase_06 AC 105 ms
7,012 KB
testcase_07 AC 91 ms
7,020 KB
testcase_08 AC 91 ms
7,016 KB
testcase_09 AC 94 ms
7,004 KB
testcase_10 AC 93 ms
7,136 KB
testcase_11 AC 96 ms
7,020 KB
testcase_12 AC 16 ms
6,820 KB
testcase_13 AC 132 ms
6,816 KB
testcase_14 AC 15 ms
6,816 KB
testcase_15 AC 136 ms
6,816 KB
testcase_16 AC 135 ms
6,816 KB
testcase_17 AC 134 ms
6,816 KB
testcase_18 AC 130 ms
6,816 KB
testcase_19 AC 135 ms
6,820 KB
testcase_20 AC 131 ms
6,816 KB
testcase_21 AC 133 ms
6,816 KB
testcase_22 AC 240 ms
11,520 KB
testcase_23 AC 244 ms
11,520 KB
testcase_24 AC 264 ms
11,520 KB
testcase_25 AC 232 ms
11,520 KB
testcase_26 AC 245 ms
11,520 KB
testcase_27 AC 120 ms
11,520 KB
testcase_28 AC 121 ms
11,520 KB
testcase_29 AC 121 ms
11,508 KB
testcase_30 AC 132 ms
11,520 KB
testcase_31 AC 125 ms
11,492 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
using namespace std;
using Graph = vector<vector<pair<int ,int>>>;

// 深さ優先探索
vector<bool> seen;
bool flag = true;
int N;
int xor_[100000];
void dfs(const Graph& G, int v) {
    seen[v] = true;
    for (auto next_v : G[v]) {
        if (seen[next_v.first]) {
            int a = xor_[v] ^ xor_[next_v.first];
            if (a != next_v.second) {
                flag = false;
            }
            continue;
        }
        xor_[next_v.first] = xor_[v] ^ next_v.second;
        dfs(G, next_v.first); // 再帰的に探索
    }
}

int main() {
    // 頂点数と辺数
    int M; cin >> N >> M;

    // グラフ入力受取
    Graph G(N);
    for (int i = 0; i < M; ++i) {
        int a, b, y;
        cin >> a >> b >> y;
        G[a - 1].push_back(make_pair(b - 1, y));
        G[b - 1].push_back(make_pair(a - 1, y));
    }

    // 全頂点が訪問済みになるまで探索
    int count = 0;
    seen.assign(N, false);
    for (int i = 0; i < N; i++) xor_[i] = 0;
    for (int v = 0; v < N; ++v) {
        if (seen[v]) continue; // v が探索済みだったらスルー
        dfs(G, v); // v が未探索なら v を始点とした DFS を行う
        ++count;
    }

    if (flag == false) cout << -1 << endl;
    else {
        for (int i = 0; i < N; i++) {
            cout << xor_[i] << endl;
        }
    }
}
0