結果

問題 No.1420 国勢調査 (Easy)
ユーザー bluemeganebluemegane
提出日時 2021-05-13 20:21:22
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 396 ms / 2,000 ms
コード長 1,983 bytes
コンパイル時間 4,321 ms
コンパイル使用メモリ 111,516 KB
実行使用メモリ 47,188 KB
最終ジャッジ日時 2024-09-25 08:30:10
合計ジャッジ時間 15,692 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
25,204 KB
testcase_01 AC 28 ms
22,832 KB
testcase_02 AC 224 ms
40,628 KB
testcase_03 AC 226 ms
40,504 KB
testcase_04 AC 222 ms
42,808 KB
testcase_05 AC 235 ms
42,800 KB
testcase_06 AC 238 ms
42,924 KB
testcase_07 AC 223 ms
42,164 KB
testcase_08 AC 219 ms
42,420 KB
testcase_09 AC 220 ms
40,244 KB
testcase_10 AC 221 ms
42,548 KB
testcase_11 AC 230 ms
40,140 KB
testcase_12 AC 72 ms
34,244 KB
testcase_13 AC 94 ms
31,092 KB
testcase_14 AC 72 ms
28,156 KB
testcase_15 AC 95 ms
31,220 KB
testcase_16 AC 99 ms
31,220 KB
testcase_17 AC 95 ms
31,100 KB
testcase_18 AC 92 ms
31,224 KB
testcase_19 AC 94 ms
30,976 KB
testcase_20 AC 93 ms
31,100 KB
testcase_21 AC 101 ms
30,840 KB
testcase_22 AC 370 ms
44,288 KB
testcase_23 AC 374 ms
44,156 KB
testcase_24 AC 389 ms
44,276 KB
testcase_25 AC 396 ms
44,412 KB
testcase_26 AC 377 ms
44,400 KB
testcase_27 AC 361 ms
41,076 KB
testcase_28 AC 362 ms
40,820 KB
testcase_29 AC 380 ms
41,332 KB
testcase_30 AC 360 ms
46,808 KB
testcase_31 AC 360 ms
47,188 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc)
Copyright (C) Microsoft Corporation. All rights reserved.

ソースコード

diff #

using System.Linq;
using System.Collections.Generic;
using System;

public class P
{
    public int xor { get; set; }
    public int to { get; set; }
}

public class Hello
{
    static void Main()
    {
        string[] line = Console.ReadLine().Trim().Split(' ');
        var n = int.Parse(line[0]);
        var m = int.Parse(line[1]);
        var aa = new List<P>[n];
        for (int i = 0; i < n; i++) aa[i] = new List<P>();
        var check = new int[m, 3];
        for (int i = 0; i < m; i++)
        {
            line = Console.ReadLine().Trim().Split(' ');
            var t0 = int.Parse(line[0]) - 1;
            var t1 = int.Parse(line[1]) - 1;
            var t2 = int.Parse(Console.ReadLine().Trim());
            aa[t0].Add(new P { to = t1, xor = t2 });
            aa[t1].Add(new P { to = t0, xor = t2 });
            check[i, 0] = t0;
            check[i, 1] = t1;
            check[i, 2] = t2;
        }
        getAns(n, m, aa, check);
    }
    static void getAns(int n, int m, List<P>[] aa, int[,] check)
    {
        var ans = new int[n];
        for (int i = 0; i < n; i++) ans[i] = -1;
        var q = new Queue<int>();
        for (int i = 0; i < n; i++)
        {
            if (ans[i] == -1)
            {
                ans[i] = 0;
                q.Enqueue(i);
                while (q.Count() > 0)
                {
                    var w = q.Dequeue();
                    foreach (var x in aa[w])
                    {
                        var t = ans[w] ^ x.xor;
                        if (ans[x.to] == -1) { ans[x.to] = t; q.Enqueue(x.to); }
                    }
                }
            }
        }
        var ok = true;
        for (int i = 0; i < m; i++)
        {
            if ((ans[check[i, 0]] ^ ans[check[i, 1]]) != check[i, 2])
            {
                ok = false;
                break;
            }
        }
        if (ok) Console.WriteLine(string.Join("\n", ans));
        else Console.WriteLine(-1);


    }
}
0