結果

問題 No.1420 国勢調査 (Easy)
ユーザー srjywrdnprktsrjywrdnprkt
提出日時 2023-06-19 20:35:26
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 1,381 bytes
コンパイル時間 2,623 ms
コンパイル使用メモリ 216,320 KB
実行使用メモリ 186,792 KB
最終ジャッジ日時 2024-06-27 08:35:14
合計ジャッジ時間 21,774 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
10,752 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 888 ms
86,676 KB
testcase_03 AC 906 ms
86,808 KB
testcase_04 AC 873 ms
86,808 KB
testcase_05 AC 837 ms
86,808 KB
testcase_06 AC 818 ms
86,808 KB
testcase_07 AC 684 ms
86,992 KB
testcase_08 AC 665 ms
87,068 KB
testcase_09 AC 626 ms
87,192 KB
testcase_10 AC 646 ms
86,804 KB
testcase_11 AC 658 ms
86,556 KB
testcase_12 AC 164 ms
91,656 KB
testcase_13 AC 470 ms
91,396 KB
testcase_14 AC 160 ms
91,524 KB
testcase_15 AC 466 ms
91,400 KB
testcase_16 AC 476 ms
91,396 KB
testcase_17 AC 473 ms
91,396 KB
testcase_18 AC 471 ms
91,392 KB
testcase_19 AC 468 ms
91,396 KB
testcase_20 AC 499 ms
91,268 KB
testcase_21 AC 470 ms
91,392 KB
testcase_22 TLE -
testcase_23 TLE -
testcase_24 TLE -
testcase_25 TLE -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
testcase_31 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

using namespace std;

vector<bool> vst;
vector<int> bt;

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

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

int main(){

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

    for (int i=0; i<M; i++){
        cin >> A >> B >> Y; A--; B--;
        for (int j=0; j<30; j++){
            if (Y & 1<<j){
                E[j][A].push_back({B, 1});
                E[j][B].push_back({A, 1});
            }
            else{
                E[j][A].push_back({B, 0});
                E[j][B].push_back({A, 0});
            }
        }
    }
    vst.resize(N);
    bt.resize(N);


    for (int i=0; i<30; i++){
        for (int j=0; j<N; j++){
            vst[j] = 0;
            bt[j] = 0;
        }
        for (int j=0; j<N; j++){
            if (!vst[j]) dfs(E[i], j);
        }
        for (int j=0; j<N; j++) ans[j] += bt[j]*(1<<i);
    }

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

    return 0;
}
0