結果

問題 No.1420 国勢調査 (Easy)
ユーザー たたき@競プロたたき@競プロ
提出日時 2023-09-06 15:12:51
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 187 ms / 2,000 ms
コード長 904 bytes
コンパイル時間 6,431 ms
コンパイル使用メモリ 314,528 KB
実行使用メモリ 12,928 KB
最終ジャッジ日時 2024-06-24 09:37:15
合計ジャッジ時間 13,557 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 3 ms
6,940 KB
testcase_02 AC 115 ms
9,216 KB
testcase_03 AC 116 ms
9,216 KB
testcase_04 AC 120 ms
9,344 KB
testcase_05 AC 116 ms
9,372 KB
testcase_06 AC 118 ms
9,248 KB
testcase_07 AC 116 ms
9,372 KB
testcase_08 AC 117 ms
9,344 KB
testcase_09 AC 118 ms
9,344 KB
testcase_10 AC 117 ms
9,472 KB
testcase_11 AC 119 ms
9,368 KB
testcase_12 AC 20 ms
6,940 KB
testcase_13 AC 30 ms
6,944 KB
testcase_14 AC 20 ms
6,944 KB
testcase_15 AC 29 ms
6,944 KB
testcase_16 AC 30 ms
6,940 KB
testcase_17 AC 30 ms
7,040 KB
testcase_18 AC 30 ms
7,040 KB
testcase_19 AC 30 ms
6,940 KB
testcase_20 AC 31 ms
6,944 KB
testcase_21 AC 28 ms
7,040 KB
testcase_22 AC 181 ms
12,928 KB
testcase_23 AC 184 ms
12,800 KB
testcase_24 AC 185 ms
12,672 KB
testcase_25 AC 181 ms
12,800 KB
testcase_26 AC 187 ms
12,928 KB
testcase_27 AC 168 ms
12,752 KB
testcase_28 AC 175 ms
12,800 KB
testcase_29 AC 165 ms
12,800 KB
testcase_30 AC 170 ms
12,800 KB
testcase_31 AC 173 ms
12,800 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;
#include <atcoder/all>
using namespace atcoder;
using mint=modint998244353; //1000000007;
using ll=long long;
using pp=pair<ll,ll>;
#define sr string 
#define vc vector
#define fi first
#define se second
#define rep(i,n) for(ll i=0;i<(ll)n;i++)
#define pb push_back
#define all(v) v.begin(),v.end()
#define pque priority_queue
#define bpc(a) __builtin_popcount(a)
int main(){
  int n,m;cin>>n>>m;
  vc v(n,vc<pp>(0));
  rep(i,m){
    int a,b,c;cin>>a>>b>>c;
    a--;b--; 
    v[a].pb({b,c}); v[b].pb({a,c});
  }
  vc<int>x(n,0),bo(n,0); bool ans=true;
  auto f=[&](auto f,int a)->void{
    bo[a]=1;
    for(auto [au,c]:v[a]){
      int nc=x[a]^c;
      if(bo[au]&&nc!=x[au])ans=false;
      if(!bo[au]){
        x[au]=nc;
        f(f,au);
      }
    }
    return;
  };
  rep(i,n)if(!bo[i])f(f,i);
  if(ans)rep(i,n)cout<<x[i]<<"\n";
  else cout<<-1;
}
  
    
0