結果

問題 No.2277 Honest or Dishonest ?
ユーザー SSRSSSRS
提出日時 2023-04-21 21:26:46
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 118 ms / 2,000 ms
コード長 866 bytes
コンパイル時間 1,946 ms
コンパイル使用メモリ 176,396 KB
実行使用メモリ 9,472 KB
最終ジャッジ日時 2024-11-08 06:22:54
合計ジャッジ時間 7,477 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 2 ms
5,248 KB
testcase_03 AC 96 ms
7,552 KB
testcase_04 AC 97 ms
8,576 KB
testcase_05 AC 35 ms
6,528 KB
testcase_06 AC 79 ms
6,656 KB
testcase_07 AC 65 ms
6,272 KB
testcase_08 AC 28 ms
6,656 KB
testcase_09 AC 59 ms
7,168 KB
testcase_10 AC 47 ms
5,248 KB
testcase_11 AC 21 ms
5,248 KB
testcase_12 AC 39 ms
5,248 KB
testcase_13 AC 90 ms
7,168 KB
testcase_14 AC 47 ms
5,248 KB
testcase_15 AC 28 ms
5,888 KB
testcase_16 AC 61 ms
6,272 KB
testcase_17 AC 30 ms
5,248 KB
testcase_18 AC 88 ms
8,320 KB
testcase_19 AC 89 ms
8,320 KB
testcase_20 AC 72 ms
7,168 KB
testcase_21 AC 65 ms
5,760 KB
testcase_22 AC 61 ms
6,656 KB
testcase_23 AC 87 ms
6,400 KB
testcase_24 AC 53 ms
6,528 KB
testcase_25 AC 68 ms
7,808 KB
testcase_26 AC 17 ms
5,888 KB
testcase_27 AC 41 ms
5,248 KB
testcase_28 AC 30 ms
5,760 KB
testcase_29 AC 47 ms
6,912 KB
testcase_30 AC 38 ms
5,376 KB
testcase_31 AC 69 ms
6,656 KB
testcase_32 AC 42 ms
6,656 KB
testcase_33 AC 89 ms
8,192 KB
testcase_34 AC 100 ms
8,064 KB
testcase_35 AC 11 ms
5,248 KB
testcase_36 AC 60 ms
6,144 KB
testcase_37 AC 93 ms
6,784 KB
testcase_38 AC 20 ms
5,248 KB
testcase_39 AC 28 ms
5,248 KB
testcase_40 AC 11 ms
5,248 KB
testcase_41 AC 107 ms
8,320 KB
testcase_42 AC 72 ms
6,912 KB
testcase_43 AC 116 ms
9,472 KB
testcase_44 AC 116 ms
9,472 KB
testcase_45 AC 118 ms
9,472 KB
testcase_46 AC 118 ms
9,472 KB
testcase_47 AC 116 ms
9,472 KB
testcase_48 AC 114 ms
9,472 KB
testcase_49 AC 114 ms
9,472 KB
testcase_50 AC 115 ms
9,472 KB
testcase_51 AC 116 ms
9,472 KB
testcase_52 AC 115 ms
9,472 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
const long long MOD = 998244353;
int main(){
  int N, Q;
  cin >> N >> Q;
  vector<vector<pair<int, int>>> E(N);
  for (int i = 0; i < Q; i++){
    int A, B, C;
    cin >> A >> B >> C;
    A--;
    B--;
    E[A].push_back(make_pair(C, B));
    E[B].push_back(make_pair(C, A));
  }
  long long ans = 1;
  vector<int> C(N, -1);
  for (int i = 0; i < N; i++){
    if (C[i] == -1){
      C[i] = 0;
      queue<int> Q;
      Q.push(i);
      while (!Q.empty()){
        int v = Q.front();
        Q.pop();
        for (pair<int, int> P : E[v]){
          int w = P.second;
          if (C[w] == -1){
            C[w] = C[v] ^ P.first;
            Q.push(w);
          } else if (C[w] != (C[v] ^ P.first)){
            ans = 0;
          }
        }
      }
      ans *= 2;
      ans %= MOD;
    }
  }
  cout << ans << endl;
}
0