結果

問題 No.2277 Honest or Dishonest ?
ユーザー miscalcmiscalc
提出日時 2023-04-21 10:29:47
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 116 ms / 2,000 ms
コード長 951 bytes
コンパイル時間 3,102 ms
コンパイル使用メモリ 208,584 KB
実行使用メモリ 11,648 KB
最終ジャッジ日時 2024-11-08 06:21:25
合計ジャッジ時間 7,999 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 2 ms
5,248 KB
testcase_03 AC 88 ms
9,984 KB
testcase_04 AC 91 ms
10,368 KB
testcase_05 AC 27 ms
6,528 KB
testcase_06 AC 73 ms
8,448 KB
testcase_07 AC 60 ms
7,808 KB
testcase_08 AC 21 ms
6,656 KB
testcase_09 AC 53 ms
7,680 KB
testcase_10 AC 45 ms
6,528 KB
testcase_11 AC 21 ms
5,248 KB
testcase_12 AC 38 ms
5,248 KB
testcase_13 AC 86 ms
9,088 KB
testcase_14 AC 45 ms
5,248 KB
testcase_15 AC 23 ms
6,144 KB
testcase_16 AC 58 ms
7,680 KB
testcase_17 AC 29 ms
5,376 KB
testcase_18 AC 82 ms
9,600 KB
testcase_19 AC 82 ms
9,856 KB
testcase_20 AC 65 ms
8,576 KB
testcase_21 AC 60 ms
6,912 KB
testcase_22 AC 56 ms
7,680 KB
testcase_23 AC 82 ms
7,552 KB
testcase_24 AC 50 ms
7,296 KB
testcase_25 AC 59 ms
8,192 KB
testcase_26 AC 12 ms
6,144 KB
testcase_27 AC 42 ms
5,764 KB
testcase_28 AC 26 ms
5,888 KB
testcase_29 AC 39 ms
7,040 KB
testcase_30 AC 37 ms
6,144 KB
testcase_31 AC 70 ms
8,448 KB
testcase_32 AC 35 ms
6,784 KB
testcase_33 AC 83 ms
9,856 KB
testcase_34 AC 92 ms
10,368 KB
testcase_35 AC 8 ms
5,248 KB
testcase_36 AC 58 ms
7,680 KB
testcase_37 AC 88 ms
8,576 KB
testcase_38 AC 20 ms
5,248 KB
testcase_39 AC 28 ms
5,248 KB
testcase_40 AC 9 ms
5,248 KB
testcase_41 AC 102 ms
10,624 KB
testcase_42 AC 71 ms
8,576 KB
testcase_43 AC 111 ms
11,520 KB
testcase_44 AC 112 ms
11,520 KB
testcase_45 AC 112 ms
11,520 KB
testcase_46 AC 108 ms
11,520 KB
testcase_47 AC 111 ms
11,520 KB
testcase_48 AC 114 ms
11,520 KB
testcase_49 AC 107 ms
11,648 KB
testcase_50 AC 116 ms
11,648 KB
testcase_51 AC 109 ms
11,520 KB
testcase_52 AC 110 ms
11,520 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
#include <atcoder/modint>
using namespace atcoder;
using mint = modint998244353;

int main()
{
  int N, Q;
  cin >> N >> Q;
  vector<vector<pair<int, int>>> G(N);
  for (int i = 0; i < Q; i++)
  {
    int a, b, c;
    cin >> a >> b >> c;
    a--, b--;
    G.at(a).push_back({b, c});
    G.at(b).push_back({a, c});
  }

  mint ans = 1;
  vector<int> colors(N, -1);  // -1: 未決定、0: 正直者、1: 嘘つき
  auto dfs = [&](auto self, int v) -> void
  {
    for (auto [nv, d] : G.at(v))
    {
      int new_color = colors.at(v) ^ d;
      if (colors.at(nv) == -1)
      {
        colors.at(nv) = new_color;
        self(self, nv);
      }
      else if (colors.at(nv) != new_color)  // 矛盾したら 0
        ans *= 0;
    }
  };
  for (int v = 0; v < N; v++)
  {
    if (colors.at(v) == -1)
    {
      ans *= 2;
      colors.at(v) = 0;
      dfs(dfs, v);
    }
  }
  cout << ans.val() << endl;
}
0