結果

問題 No.2277 Honest or Dishonest ?
ユーザー chro_96chro_96
提出日時 2023-04-21 21:55:17
言語 C
(gcc 12.3.0)
結果
AC  
実行時間 48 ms / 2,000 ms
コード長 2,105 bytes
コンパイル時間 1,026 ms
コンパイル使用メモリ 30,592 KB
実行使用メモリ 9,472 KB
最終ジャッジ日時 2024-11-08 06:31:02
合計ジャッジ時間 4,603 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 6 ms
9,216 KB
testcase_01 AC 6 ms
9,216 KB
testcase_02 AC 7 ms
9,088 KB
testcase_03 AC 41 ms
9,216 KB
testcase_04 AC 39 ms
9,472 KB
testcase_05 AC 17 ms
9,088 KB
testcase_06 AC 36 ms
9,216 KB
testcase_07 AC 29 ms
9,216 KB
testcase_08 AC 14 ms
9,216 KB
testcase_09 AC 26 ms
9,344 KB
testcase_10 AC 24 ms
9,216 KB
testcase_11 AC 15 ms
9,088 KB
testcase_12 AC 23 ms
9,088 KB
testcase_13 AC 39 ms
9,216 KB
testcase_14 AC 28 ms
9,216 KB
testcase_15 AC 15 ms
9,216 KB
testcase_16 AC 29 ms
9,216 KB
testcase_17 AC 18 ms
9,216 KB
testcase_18 AC 36 ms
9,344 KB
testcase_19 AC 38 ms
9,472 KB
testcase_20 AC 32 ms
9,344 KB
testcase_21 AC 31 ms
9,216 KB
testcase_22 AC 28 ms
9,216 KB
testcase_23 AC 39 ms
9,216 KB
testcase_24 AC 25 ms
9,344 KB
testcase_25 AC 28 ms
9,344 KB
testcase_26 AC 11 ms
9,088 KB
testcase_27 AC 23 ms
9,216 KB
testcase_28 AC 16 ms
9,216 KB
testcase_29 AC 21 ms
9,216 KB
testcase_30 AC 21 ms
9,216 KB
testcase_31 AC 32 ms
9,344 KB
testcase_32 AC 19 ms
9,216 KB
testcase_33 AC 39 ms
9,472 KB
testcase_34 AC 44 ms
9,088 KB
testcase_35 AC 10 ms
9,216 KB
testcase_36 AC 30 ms
9,088 KB
testcase_37 AC 42 ms
9,216 KB
testcase_38 AC 14 ms
9,216 KB
testcase_39 AC 18 ms
9,216 KB
testcase_40 AC 10 ms
9,216 KB
testcase_41 AC 45 ms
9,216 KB
testcase_42 AC 32 ms
9,216 KB
testcase_43 AC 47 ms
9,344 KB
testcase_44 AC 47 ms
9,472 KB
testcase_45 AC 47 ms
9,344 KB
testcase_46 AC 48 ms
9,472 KB
testcase_47 AC 48 ms
9,344 KB
testcase_48 AC 47 ms
9,472 KB
testcase_49 AC 47 ms
9,344 KB
testcase_50 AC 46 ms
9,472 KB
testcase_51 AC 46 ms
9,472 KB
testcase_52 AC 46 ms
9,472 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <stdio.h>

typedef struct list {
  int v;
  struct list *n;
} list;

typedef struct tree {
  int v;
  struct tree *p;
} tree;

tree *get_root (tree *t) {
  if (t == NULL || t->p == NULL) {
    return t;
  }
  
  t->p = get_root(t->p);
  return t->p;
}

int func (int v, int b, list **e, int *flag, int *visited) {
  list *l = e[v];
  
  if (visited[v] > 0 && flag[v] != b) {
    return -1;
  } else if (visited[v] > 0) {
    return 1;
  }
  
  visited[v] = 1;
  flag[v] = b;
  while (l != NULL) {
    if (func(l->v, 1-b, e, flag, visited) < 0) {
      return -1;
    }
    l = l->n;
  }
  
  return 1;
}

int main () {
  int n = 0;
  int q = 0;
  int a[100000] = {};
  int b[100000] = {};
  int c[100000] = {};
  
  int res = 0;
  
  long long ans = 1LL;
  long long mod_num = 998244353LL;
  
  tree t[100000] = {};
  
  list pool[200000] = {};
  int used = 0;
  
  list *e[100000] = {};
  int flag[100000] = {};
  int visited[100000] = {};
  
  res = scanf("%d", &n);
  res = scanf("%d", &q);
  for (int i = 0; i < q; i++) {
    res = scanf("%d", a+i);
    res = scanf("%d", b+i);
    res = scanf("%d", c+i);
    a[i]--;
    b[i]--;
  }
  
  for (int i = 0; i < n; i++) {
    t[i].v = i;
    t[i].p = NULL;
  }
  
  for (int i = 0; i < q; i++) {
    if (c[i] == 0) {
      tree *rt1 = get_root(t+a[i]);
      tree *rt2 = get_root(t+b[i]);
      if (rt1 != rt2) {
        rt2->p = rt1;
      }
    }
  }
  
  for (int i = 0; i < q; i++) {
    if (c[i] == 1) {
      tree *rt1 = get_root(t+a[i]);
      tree *rt2 = get_root(t+b[i]);
      if (rt1 == rt2) {
        ans = 0LL;
      } else {
        pool[used].v = rt2->v;
        pool[used].n = e[rt1->v];
        e[rt1->v] = pool+used;
        used++;
        pool[used].v = rt1->v;
        pool[used].n = e[rt2->v];
        e[rt2->v] = pool+used;
        used++;
      }
    }
  }
  
  for (int i = 0; i < n; i++) {
    if (t[i].p == NULL && visited[i] <= 0) {
      if (func(i, 0, e, flag, visited) < 0) {
        ans = 0LL;
      } else {
        ans *= 2LL;
        ans %= mod_num;
      }
    }
  }
  
  printf("%lld\n", ans);
  return 0;
}
0