結果
問題 | No.2277 Honest or Dishonest ? |
ユーザー | Carpenters-Cat |
提出日時 | 2023-04-22 02:00:45 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,601 bytes |
コンパイル時間 | 2,713 ms |
コンパイル使用メモリ | 211,132 KB |
実行使用メモリ | 6,868 KB |
最終ジャッジ日時 | 2024-11-08 06:49:05 |
合計ジャッジ時間 | 13,274 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | AC | 2 ms
5,248 KB |
testcase_02 | WA | - |
testcase_03 | RE | - |
testcase_04 | RE | - |
testcase_05 | RE | - |
testcase_06 | RE | - |
testcase_07 | RE | - |
testcase_08 | RE | - |
testcase_09 | RE | - |
testcase_10 | RE | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | RE | - |
testcase_14 | WA | - |
testcase_15 | RE | - |
testcase_16 | RE | - |
testcase_17 | WA | - |
testcase_18 | RE | - |
testcase_19 | RE | - |
testcase_20 | RE | - |
testcase_21 | WA | - |
testcase_22 | RE | - |
testcase_23 | AC | 69 ms
5,248 KB |
testcase_24 | RE | - |
testcase_25 | RE | - |
testcase_26 | RE | - |
testcase_27 | AC | 33 ms
5,248 KB |
testcase_28 | RE | - |
testcase_29 | RE | - |
testcase_30 | RE | - |
testcase_31 | RE | - |
testcase_32 | RE | - |
testcase_33 | RE | - |
testcase_34 | RE | - |
testcase_35 | RE | - |
testcase_36 | RE | - |
testcase_37 | RE | - |
testcase_38 | AC | 18 ms
5,248 KB |
testcase_39 | AC | 23 ms
5,248 KB |
testcase_40 | RE | - |
testcase_41 | RE | - |
testcase_42 | RE | - |
testcase_43 | RE | - |
testcase_44 | RE | - |
testcase_45 | RE | - |
testcase_46 | RE | - |
testcase_47 | RE | - |
testcase_48 | RE | - |
testcase_49 | RE | - |
testcase_50 | RE | - |
testcase_51 | RE | - |
testcase_52 | RE | - |
ソースコード
#include <bits/stdc++.h> using namespace std; using Vi = std::vector<int> ; using VVi = vector<Vi>; int par[200020], siz[200020]; void init(int N) { iota(par, par + N, 0); fill(siz, siz + N, 1); } int root(int a) { return (a == par[a] ? a : root(par[a])); } void merge(int a, int b) { a = root(a); b = root(b); if (a == b) { return; } if (siz[a] < siz[b]) { swap(a, b); } par[b] = a; siz[a] += siz[b]; } int main() { int N, Q; cin >> N >> Q; vector<pair<int, int>> X; for (int i = 0; i < Q; i ++) { int a, b, c; cin >> a >> b >> c; if (c) { X.emplace_back(--a, --b); } else { merge(--a, --b); } } VVi gr(N); for (auto [a, b] : X) { a = root(a); b = root(b); gr[a].push_back(b); gr[b].push_back(a); } using ll = long long; ll const m = 998244353; ll ans = 1; int did[20002]; fill(did, did + N, -1); for (int i = 0; i < N; i ++) { if (i != root(i) || did[i] != -1) { continue; } int ok = 2; queue<int> que; did[i] = 0; que.push(i); while (!que.empty()) { int u = que.front(); que.pop(); for (auto v : gr[u]) { if (did[v] == -1) { did[v] = 1 - did[u]; que.push(v); } else if (did[v] == did[u]) { ok = 0; } } } ans = (ans * ok) % m; } cout << ans << endl; }