結果

問題 No.2674 k-Walk on Bipartite
ユーザー kakel-sankakel-san
提出日時 2024-03-15 22:46:06
言語 C#
(.NET 8.0.203)
結果
WA  
実行時間 -
コード長 1,839 bytes
コンパイル時間 9,678 ms
コンパイル使用メモリ 169,372 KB
実行使用メモリ 187,772 KB
最終ジャッジ日時 2024-09-30 02:14:51
合計ジャッジ時間 16,139 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 53 ms
30,848 KB
testcase_01 AC 54 ms
30,592 KB
testcase_02 AC 55 ms
30,592 KB
testcase_03 AC 57 ms
30,336 KB
testcase_04 AC 53 ms
30,208 KB
testcase_05 AC 53 ms
30,208 KB
testcase_06 AC 51 ms
30,208 KB
testcase_07 AC 169 ms
61,252 KB
testcase_08 AC 245 ms
61,520 KB
testcase_09 AC 160 ms
61,300 KB
testcase_10 AC 281 ms
65,796 KB
testcase_11 AC 174 ms
61,012 KB
testcase_12 AC 252 ms
65,172 KB
testcase_13 AC 156 ms
61,136 KB
testcase_14 AC 82 ms
43,264 KB
testcase_15 AC 291 ms
65,432 KB
testcase_16 AC 195 ms
61,508 KB
testcase_17 AC 191 ms
61,288 KB
testcase_18 AC 109 ms
51,584 KB
testcase_19 AC 166 ms
60,996 KB
testcase_20 AC 164 ms
61,092 KB
testcase_21 AC 201 ms
61,276 KB
testcase_22 AC 301 ms
65,792 KB
testcase_23 AC 55 ms
30,464 KB
testcase_24 WA -
testcase_25 WA -
testcase_26 AC 52 ms
30,592 KB
testcase_27 AC 53 ms
30,704 KB
testcase_28 WA -
testcase_29 WA -
testcase_30 AC 55 ms
30,464 KB
testcase_31 AC 52 ms
30,464 KB
testcase_32 AC 54 ms
30,572 KB
testcase_33 AC 53 ms
30,572 KB
testcase_34 AC 52 ms
30,592 KB
testcase_35 AC 51 ms
30,592 KB
testcase_36 AC 53 ms
30,592 KB
testcase_37 AC 54 ms
30,592 KB
testcase_38 AC 52 ms
187,772 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.csproj を復元しました (92 ms)。
MSBuild のバージョン 17.9.6+a4ecab324 (.NET)
  main -> /home/judge/data/code/bin/Release/net8.0/main.dll
  main -> /home/judge/data/code/bin/Release/net8.0/publish/

ソースコード

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[] 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]);
        c = NList;
        var (s, t, k) = (c[0], c[1], c[2]);
        --s;
        --t;
        var map = NMap(m);
        if (n == 1 && k > 0)
        {
            WriteLine("No");
            return;
        }
        if (k == 0 && s != t)
        {
            WriteLine("No");
            return;
        }
        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 INF = int.MaxValue / 2;
        var len = Enumerable.Repeat(INF, n).ToArray();
        len[s] = 0;
        var q = new Queue<(int pos, int len)>();
        q.Enqueue((s, 0));
        while (q.Count > 0)
        {
            var cur = q.Dequeue();
            foreach (var next in tree[cur.pos])
            {
                if (len[next] <= cur.len + 1) continue;
                len[next] = cur.len + 1;
                q.Enqueue((next, len[next]));
            }
        }
        if (len[t] <= k && len[t] % 2 == k % 2) WriteLine("Yes");
        else if (len[t] != INF && len[t] % 2 != k % 2) WriteLine("No");
        else WriteLine("Unknown");
    }

}
 
0