結果

問題 No.1420 国勢調査 (Easy)
ユーザー SSRSSSRS
提出日時 2021-03-05 21:54:41
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 273 ms / 2,000 ms
コード長 899 bytes
コンパイル時間 1,868 ms
コンパイル使用メモリ 176,396 KB
実行使用メモリ 9,472 KB
最終ジャッジ日時 2024-10-07 01:37:19
合計ジャッジ時間 8,489 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2
other AC * 30
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
int main(){
  int N, M;
  cin >> N >> M;
  vector<vector<pair<int, int>>> E(N);
  for (int i = 0; i < M; i++){
    int A, B, Y;
    cin >> A >> B >> Y;
    A--;
    B--;
    E[A].push_back(make_pair(Y, B));
    E[B].push_back(make_pair(Y, A));
  }
  bool ok = true;
  vector<int> X(N, -1);
  for (int i = 0; i < N; i++){
    if (X[i] == -1){
      X[i] = 0;
      queue<int> Q;
      Q.push(i);
      while (!Q.empty()){
        int v = Q.front();
        Q.pop();
        for (auto P : E[v]){
          int Y = P.first;
          int w = P.second;
          if (X[w] == -1){
            X[w] = X[v] ^ Y;
            Q.push(w);
          } else if (X[w] != (X[v] ^ Y)){
            ok = false;
          }
        }
      }
    }
  }
  if (!ok){
    cout << -1 << endl;
  } else {
    for (int i = 0; i < N; i++){
      cout << X[i] << endl;
    }
  }
}
0