結果

問題 No.2277 Honest or Dishonest ?
ユーザー miscalcmiscalc
提出日時 2023-04-19 23:52:32
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
(最新)
AC  
(最初)
実行時間 -
コード長 882 bytes
コンパイル時間 2,765 ms
コンパイル使用メモリ 208,616 KB
実行使用メモリ 11,776 KB
最終ジャッジ日時 2024-11-08 06:19:34
合計ジャッジ時間 9,219 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 3 ms
5,248 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 AC 41 ms
5,248 KB
testcase_13 WA -
testcase_14 AC 50 ms
5,376 KB
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 AC 74 ms
6,784 KB
testcase_22 WA -
testcase_23 AC 98 ms
7,552 KB
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 AC 47 ms
5,768 KB
testcase_28 WA -
testcase_29 WA -
testcase_30 AC 45 ms
6,272 KB
testcase_31 AC 85 ms
8,320 KB
testcase_32 WA -
testcase_33 WA -
testcase_34 AC 123 ms
10,240 KB
testcase_35 WA -
testcase_36 AC 74 ms
7,680 KB
testcase_37 AC 113 ms
8,576 KB
testcase_38 AC 21 ms
5,248 KB
testcase_39 AC 30 ms
5,248 KB
testcase_40 WA -
testcase_41 AC 132 ms
10,624 KB
testcase_42 AC 92 ms
8,576 KB
testcase_43 AC 148 ms
11,520 KB
testcase_44 WA -
testcase_45 WA -
testcase_46 WA -
testcase_47 WA -
testcase_48 WA -
testcase_49 AC 152 ms
11,520 KB
testcase_50 AC 160 ms
11,648 KB
testcase_51 AC 157 ms
11,392 KB
testcase_52 AC 151 ms
11,520 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

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);
  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)
        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