結果

問題 No.1420 国勢調査 (Easy)
ユーザー HaaHaa
提出日時 2021-03-05 22:09:45
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 256 ms / 2,000 ms
コード長 1,068 bytes
コンパイル時間 2,101 ms
コンパイル使用メモリ 177,964 KB
実行使用メモリ 13,696 KB
最終ジャッジ日時 2024-10-07 02:10:05
合計ジャッジ時間 7,933 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 4 ms
6,820 KB
testcase_01 AC 4 ms
6,820 KB
testcase_02 AC 120 ms
12,544 KB
testcase_03 AC 114 ms
12,544 KB
testcase_04 AC 113 ms
12,416 KB
testcase_05 AC 115 ms
12,432 KB
testcase_06 AC 115 ms
12,544 KB
testcase_07 AC 101 ms
12,428 KB
testcase_08 AC 101 ms
12,564 KB
testcase_09 AC 100 ms
12,408 KB
testcase_10 AC 98 ms
12,544 KB
testcase_11 AC 100 ms
12,484 KB
testcase_12 AC 16 ms
7,296 KB
testcase_13 AC 134 ms
7,296 KB
testcase_14 AC 15 ms
7,368 KB
testcase_15 AC 133 ms
7,240 KB
testcase_16 AC 133 ms
7,204 KB
testcase_17 AC 135 ms
7,424 KB
testcase_18 AC 141 ms
7,292 KB
testcase_19 AC 135 ms
7,424 KB
testcase_20 AC 131 ms
7,296 KB
testcase_21 AC 133 ms
7,244 KB
testcase_22 AC 251 ms
13,568 KB
testcase_23 AC 252 ms
13,568 KB
testcase_24 AC 256 ms
13,536 KB
testcase_25 AC 253 ms
13,568 KB
testcase_26 AC 249 ms
13,568 KB
testcase_27 AC 129 ms
13,568 KB
testcase_28 AC 125 ms
13,696 KB
testcase_29 AC 122 ms
13,568 KB
testcase_30 AC 122 ms
13,696 KB
testcase_31 AC 131 ms
13,520 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
typedef long long int ll;
typedef pair<ll,ll> P;
typedef vector<ll> VI;
typedef vector<VI> VVI;
#define REP(i,n) for(int i=0;i<(n);i++)
#define ALL(v) v.begin(),v.end()
constexpr ll MOD=1000000007;
constexpr ll INF=2e18;

vector<vector<P>> edge(110000,vector<P>(0));
vector<bool> used(110000,0);
VI ans(110000,-1);
bool no=0;

void dfs(int v, int x){
    for(auto to:edge[v]){
        if(ans[to.first]!=-1&&ans[to.first]!=(x^to.second))
            no=1;
        if(!used[to.first]){
            ans[to.first]=x^to.second;
            used[to.first]=1;
            dfs(to.first,x^to.second);
        }
    }
}

int main(){
    int n, m; cin >> n >> m;
    int a, b, y;
    REP(i,m){
        cin >> a >> b >> y;
        a--, b--;
        edge[a].push_back({b,y});
        edge[b].push_back({a,y});
    }
    REP(i,n){
        if(!used[i]){
            ans[i]=0;
            dfs(i,0);
        }
    }
    if(no)
        cout << -1 << endl;
    else{
        REP(i,n)
            cout << ans[i] << endl;
    }
    return 0;
}
0