結果

問題 No.2277 Honest or Dishonest ?
ユーザー tnakao0123tnakao0123
提出日時 2023-05-19 11:24:25
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 69 ms / 2,000 ms
コード長 1,180 bytes
コンパイル時間 832 ms
コンパイル使用メモリ 60,148 KB
実行使用メモリ 9,472 KB
最終ジャッジ日時 2024-05-10 00:23:51
合計ジャッジ時間 4,512 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 4 ms
5,504 KB
testcase_01 AC 3 ms
5,376 KB
testcase_02 AC 4 ms
5,504 KB
testcase_03 AC 48 ms
8,768 KB
testcase_04 AC 51 ms
8,960 KB
testcase_05 AC 22 ms
6,940 KB
testcase_06 AC 40 ms
8,064 KB
testcase_07 AC 31 ms
7,740 KB
testcase_08 AC 20 ms
6,784 KB
testcase_09 AC 33 ms
7,680 KB
testcase_10 AC 23 ms
7,040 KB
testcase_11 AC 14 ms
6,528 KB
testcase_12 AC 20 ms
6,912 KB
testcase_13 AC 47 ms
8,448 KB
testcase_14 AC 23 ms
7,216 KB
testcase_15 AC 17 ms
6,784 KB
testcase_16 AC 35 ms
7,680 KB
testcase_17 AC 20 ms
6,656 KB
testcase_18 AC 52 ms
8,648 KB
testcase_19 AC 53 ms
8,576 KB
testcase_20 AC 44 ms
7,936 KB
testcase_21 AC 33 ms
7,680 KB
testcase_22 AC 32 ms
7,680 KB
testcase_23 AC 44 ms
8,192 KB
testcase_24 AC 31 ms
7,552 KB
testcase_25 AC 37 ms
8,064 KB
testcase_26 AC 11 ms
6,400 KB
testcase_27 AC 25 ms
6,944 KB
testcase_28 AC 22 ms
6,784 KB
testcase_29 AC 30 ms
7,296 KB
testcase_30 AC 21 ms
6,784 KB
testcase_31 AC 35 ms
7,808 KB
testcase_32 AC 28 ms
7,168 KB
testcase_33 AC 47 ms
8,576 KB
testcase_34 AC 50 ms
8,768 KB
testcase_35 AC 9 ms
6,016 KB
testcase_36 AC 31 ms
7,552 KB
testcase_37 AC 49 ms
8,448 KB
testcase_38 AC 12 ms
6,144 KB
testcase_39 AC 16 ms
6,400 KB
testcase_40 AC 8 ms
6,016 KB
testcase_41 AC 56 ms
9,028 KB
testcase_42 AC 35 ms
7,936 KB
testcase_43 AC 62 ms
9,472 KB
testcase_44 AC 64 ms
9,472 KB
testcase_45 AC 63 ms
9,472 KB
testcase_46 AC 69 ms
9,344 KB
testcase_47 AC 65 ms
9,216 KB
testcase_48 AC 61 ms
9,344 KB
testcase_49 AC 58 ms
9,280 KB
testcase_50 AC 59 ms
9,344 KB
testcase_51 AC 61 ms
9,216 KB
testcase_52 AC 65 ms
9,344 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: In function 'int main()':
main.cpp:60:19: warning: structured bindings only available with '-std=c++17' or '-std=gnu++17' [-Wc++17-extensions]
   60 |         for (auto [v, c]: nbrs[u]) {
      |                   ^

ソースコード

diff #

/* -*- coding: utf-8 -*-
 *
 * 2277.cc:  No.2277 Honest or Dishonest ? - yukicoder
 */

#include<cstdio>
#include<vector>
#include<queue>
#include<algorithm>
#include<utility>
 
using namespace std;

/* constant */

const int MAX_N = 100000;
const int MAX_QN = 100000;
const int MOD = 998244353;

/* typedef */

typedef long long ll;
typedef queue<int> qi;
typedef pair<int,int> pii;
typedef vector<pii> vpii;

/* global variables */

vpii nbrs[MAX_N];
int ds[MAX_N];

/* subroutines */

/* main */

int main() {
  int n, qn;
  scanf("%d%d", &n, &qn);

  for (int i = 0; i < qn; i++) {
    int ai, bi, ci;
    scanf("%d%d%d", &ai, &bi, &ci);
    ai--, bi--;
    nbrs[ai].push_back({bi, ci});
    nbrs[bi].push_back({ai, ci});
  }

  int ans = 1;
  fill(ds, ds + n, -1);

  for (int st = 0; st < n; st++)
    if (ds[st] < 0) {
      ans = (ll)ans * 2 % MOD;
      ds[st] = 0;
      qi q;
      q.push(st);

      while (! q.empty()) {
	int u = q.front(); q.pop();
	for (auto [v, c]: nbrs[u]) {
	  if (ds[v] < 0) {
	    ds[v] = ds[u] ^ c;
	    q.push(v);
	  }
	  else if (ds[v] != (ds[u] ^ c)) {
	    puts("0"); return 0;
	  }
	}
      }
    }

  printf("%d\n", ans);
  return 0;
}
0