結果

問題 No.2277 Honest or Dishonest ?
ユーザー kakel-sankakel-san
提出日時 2023-07-24 10:00:57
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 238 ms / 2,000 ms
コード長 1,779 bytes
コンパイル時間 2,134 ms
コンパイル使用メモリ 113,084 KB
実行使用メモリ 48,656 KB
最終ジャッジ日時 2024-10-01 05:24:06
合計ジャッジ時間 12,758 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
23,352 KB
testcase_01 AC 32 ms
27,484 KB
testcase_02 AC 31 ms
25,268 KB
testcase_03 AC 199 ms
43,464 KB
testcase_04 AC 205 ms
43,284 KB
testcase_05 AC 86 ms
33,876 KB
testcase_06 AC 167 ms
39,668 KB
testcase_07 AC 137 ms
36,204 KB
testcase_08 AC 69 ms
32,268 KB
testcase_09 AC 127 ms
36,876 KB
testcase_10 AC 113 ms
35,836 KB
testcase_11 AC 67 ms
30,516 KB
testcase_12 AC 104 ms
33,688 KB
testcase_13 AC 176 ms
41,400 KB
testcase_14 AC 126 ms
35,344 KB
testcase_15 AC 83 ms
37,156 KB
testcase_16 AC 137 ms
38,616 KB
testcase_17 AC 82 ms
33,272 KB
testcase_18 AC 174 ms
43,600 KB
testcase_19 AC 179 ms
44,520 KB
testcase_20 AC 153 ms
43,012 KB
testcase_21 AC 138 ms
39,068 KB
testcase_22 AC 125 ms
36,400 KB
testcase_23 AC 183 ms
41,720 KB
testcase_24 AC 122 ms
40,072 KB
testcase_25 AC 139 ms
41,260 KB
testcase_26 AC 53 ms
31,212 KB
testcase_27 AC 102 ms
36,076 KB
testcase_28 AC 79 ms
34,104 KB
testcase_29 AC 110 ms
41,248 KB
testcase_30 AC 87 ms
32,440 KB
testcase_31 AC 132 ms
36,868 KB
testcase_32 AC 96 ms
35,092 KB
testcase_33 AC 192 ms
40,564 KB
testcase_34 AC 201 ms
44,260 KB
testcase_35 AC 52 ms
31,808 KB
testcase_36 AC 126 ms
36,948 KB
testcase_37 AC 193 ms
40,952 KB
testcase_38 AC 67 ms
32,204 KB
testcase_39 AC 79 ms
31,360 KB
testcase_40 AC 51 ms
33,372 KB
testcase_41 AC 196 ms
42,492 KB
testcase_42 AC 147 ms
40,216 KB
testcase_43 AC 205 ms
44,692 KB
testcase_44 AC 235 ms
48,656 KB
testcase_45 AC 237 ms
46,480 KB
testcase_46 AC 238 ms
48,508 KB
testcase_47 AC 218 ms
46,376 KB
testcase_48 AC 225 ms
48,528 KB
testcase_49 AC 215 ms
47,764 KB
testcase_50 AC 207 ms
44,680 KB
testcase_51 AC 222 ms
46,476 KB
testcase_52 AC 206 ms
47,008 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc)
Copyright (C) Microsoft Corporation. All rights reserved.

ソースコード

diff #

using System;
using static System.Console;
using System.Linq;
using System.Collections.Generic;
class Program
{
    static int NN => int.Parse(ReadLine());
    static int[] NList => ReadLine().Split().Select(int.Parse).ToArray();
    static int[][] NArr(long n) => Enumerable.Repeat(0, (int)n).Select(_ => NList).ToArray();
    public static void Main()
    {
        Solve();
    }
    static void Solve()
    {
        var c = NList;
        var (n, q) = (c[0], c[1]);
        var map = NArr(q);
        var tree = new List<(int to, int val)>[n];
        for (var i = 0; i < tree.Length; ++i) tree[i] = new List<(int to, int val)>();
        foreach (var edge in map)
        {
            tree[edge[0] - 1].Add((edge[1] - 1, edge[2]));
            tree[edge[1] - 1].Add((edge[0] - 1, edge[2]));
        }
        var ans = 1L;
        var mod = 998_244_353;
        var len = Enumerable.Repeat(-1, n).ToArray();
        for (var i = 0; i < n; ++i)
        {
            if (len[i] < 0)
            {
                len[i] = 0;
                ans = ans * 2 % mod;
                if (!DFS(i, tree, len))
                {
                    WriteLine(0);
                    return;
                }
            }
        }
        WriteLine(ans);
    }
    static bool DFS(int cur, List<(int to, int val)>[] tree, int[] len)
    {
        foreach (var next in tree[cur])
        {
            if (len[next.to] < 0)
            {
                len[next.to] = len[cur] ^ next.val;
                if (!DFS(next.to, tree, len)) return false;
            }
            else
            {
                if (len[next.to] != (len[cur] ^ next.val)) return false;
            }
        }
        return true;
    }
}
0