結果

問題 No.1420 国勢調査 (Easy)
ユーザー srjywrdnprktsrjywrdnprkt
提出日時 2023-06-19 20:40:50
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 270 ms / 2,000 ms
コード長 862 bytes
コンパイル時間 2,402 ms
コンパイル使用メモリ 212,664 KB
実行使用メモリ 11,264 KB
最終ジャッジ日時 2024-06-27 08:39:18
合計ジャッジ時間 9,177 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 116 ms
6,856 KB
testcase_03 AC 116 ms
6,900 KB
testcase_04 AC 119 ms
6,864 KB
testcase_05 AC 116 ms
6,784 KB
testcase_06 AC 113 ms
6,872 KB
testcase_07 AC 101 ms
7,040 KB
testcase_08 AC 101 ms
7,040 KB
testcase_09 AC 100 ms
6,912 KB
testcase_10 AC 103 ms
7,040 KB
testcase_11 AC 102 ms
6,784 KB
testcase_12 AC 16 ms
6,528 KB
testcase_13 AC 145 ms
6,528 KB
testcase_14 AC 15 ms
6,528 KB
testcase_15 AC 147 ms
6,528 KB
testcase_16 AC 143 ms
6,528 KB
testcase_17 AC 145 ms
6,528 KB
testcase_18 AC 151 ms
6,528 KB
testcase_19 AC 142 ms
6,528 KB
testcase_20 AC 144 ms
6,656 KB
testcase_21 AC 143 ms
6,528 KB
testcase_22 AC 267 ms
11,264 KB
testcase_23 AC 270 ms
11,136 KB
testcase_24 AC 268 ms
11,136 KB
testcase_25 AC 268 ms
11,136 KB
testcase_26 AC 269 ms
11,136 KB
testcase_27 AC 122 ms
9,472 KB
testcase_28 AC 122 ms
9,472 KB
testcase_29 AC 124 ms
9,472 KB
testcase_30 AC 120 ms
9,472 KB
testcase_31 AC 120 ms
9,344 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

using namespace std;

vector<bool> vst;
vector<int> ans;

void dfs(vector<vector<pair<int, int>>> &E, int from){
    vst[from] = 1;
    int alt;

    for(auto [to, C] : E[from]){
        alt = C ^ ans[from];
        if (vst[to]){
            if (alt != ans[to]){
                cout << -1 << endl;
                exit(0);
            }
            continue;
        }
        ans[to] = alt;
        dfs(E, to);
    }
}

int main(){

    int N, M, A, B, Y;
    cin >> N >> M;
    vector<vector<pair<int, int>>> E(N);

    for (int i=0; i<M; i++){
        cin >> A >> B >> Y; A--; B--;
        E[A].push_back({B, Y});
        E[B].push_back({A, Y});
    }
    vst.resize(N);
    ans.resize(N);
    
    for (int i=0; i<N; i++){
        if (!vst[i]) dfs(E, i);
    }

    for (int i=0; i<N; i++) cout << ans[i] << endl;

    return 0;
}
0