結果

問題 No.2202 贅沢てりたまチキン
ユーザー kakel-sankakel-san
提出日時 2023-02-03 21:41:09
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 380 ms / 2,000 ms
コード長 1,507 bytes
コンパイル時間 2,322 ms
コンパイル使用メモリ 107,520 KB
実行使用メモリ 75,392 KB
最終ジャッジ日時 2024-07-02 19:31:13
合計ジャッジ時間 8,090 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
19,328 KB
testcase_01 AC 31 ms
19,456 KB
testcase_02 AC 31 ms
19,072 KB
testcase_03 AC 30 ms
19,328 KB
testcase_04 AC 31 ms
19,072 KB
testcase_05 AC 31 ms
19,072 KB
testcase_06 AC 31 ms
19,328 KB
testcase_07 AC 30 ms
19,328 KB
testcase_08 AC 30 ms
19,200 KB
testcase_09 AC 30 ms
19,200 KB
testcase_10 AC 48 ms
29,304 KB
testcase_11 AC 30 ms
19,200 KB
testcase_12 AC 31 ms
19,456 KB
testcase_13 AC 31 ms
19,072 KB
testcase_14 AC 348 ms
75,392 KB
testcase_15 AC 346 ms
75,252 KB
testcase_16 AC 303 ms
53,756 KB
testcase_17 AC 296 ms
53,608 KB
testcase_18 AC 152 ms
35,840 KB
testcase_19 AC 203 ms
48,128 KB
testcase_20 AC 315 ms
50,412 KB
testcase_21 AC 316 ms
50,296 KB
testcase_22 AC 229 ms
32,896 KB
testcase_23 AC 252 ms
33,408 KB
testcase_24 AC 246 ms
33,536 KB
testcase_25 AC 380 ms
50,680 KB
testcase_26 AC 327 ms
62,696 KB
testcase_27 AC 333 ms
62,960 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[] NList => ReadLine().Split().Select(int.Parse).ToArray();
    static int[] NMi => ReadLine().Split().Select(c => int.Parse(c) - 1).ToArray();
    static int[][] NMap(int n) => Enumerable.Repeat(0, n).Select(_ => NMi).ToArray();
    public static void Main()
    {
        Solve();
    }
    static void Solve()
    {
        var c = NList;
        var (n, m) = (c[0], c[1]);
        var map = NMap(m);
        var tree = new List<int>[n];
        for (var i = 0; i < tree.Length; ++i) tree[i] = new List<int>();
        foreach (var edge in map)
        {
            tree[edge[0]].Add(edge[1]);
            tree[edge[1]].Add(edge[0]);
        }
        var colors = new int[n];
        for (var i = 0; i < n; ++i)
        {
            if (DFS(i, 1, tree, colors))
            {
                WriteLine("No");
                return;
            }
        }
        WriteLine("Yes");
    }
    static bool DFS(int cur, int color, List<int>[] tree, int[] colors)
    {
        colors[cur] = color;
        foreach (var next in tree[cur])
        {
            if (colors[next] != 0)
            {
                if (colors[cur] == colors[next]) return false;
            }
            else
            {
                if (!DFS(next, -color, tree, colors)) return false;
            }
        }
        return true;
    }
}
0