結果

問題 No.2565 はじめてのおつかい
ユーザー kakel-sankakel-san
提出日時 2023-12-02 15:32:22
言語 C#
(.NET 8.0.203)
結果
AC  
実行時間 181 ms / 2,000 ms
コード長 1,686 bytes
コンパイル時間 10,040 ms
コンパイル使用メモリ 167,708 KB
実行使用メモリ 213,832 KB
最終ジャッジ日時 2024-09-26 18:52:37
合計ジャッジ時間 15,454 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 58 ms
30,208 KB
testcase_01 AC 62 ms
30,336 KB
testcase_02 AC 59 ms
30,464 KB
testcase_03 AC 181 ms
60,656 KB
testcase_04 AC 164 ms
61,124 KB
testcase_05 AC 56 ms
30,464 KB
testcase_06 AC 135 ms
51,968 KB
testcase_07 AC 97 ms
42,496 KB
testcase_08 AC 93 ms
41,344 KB
testcase_09 AC 121 ms
50,560 KB
testcase_10 AC 101 ms
43,264 KB
testcase_11 AC 169 ms
60,320 KB
testcase_12 AC 90 ms
39,808 KB
testcase_13 AC 100 ms
43,520 KB
testcase_14 AC 128 ms
51,456 KB
testcase_15 AC 129 ms
52,096 KB
testcase_16 AC 129 ms
55,936 KB
testcase_17 AC 78 ms
36,352 KB
testcase_18 AC 79 ms
38,528 KB
testcase_19 AC 170 ms
60,196 KB
testcase_20 AC 135 ms
54,016 KB
testcase_21 AC 130 ms
53,760 KB
testcase_22 AC 105 ms
44,544 KB
testcase_23 AC 108 ms
46,080 KB
testcase_24 AC 65 ms
33,152 KB
testcase_25 AC 131 ms
53,632 KB
testcase_26 AC 107 ms
45,696 KB
testcase_27 AC 131 ms
54,272 KB
testcase_28 AC 166 ms
60,172 KB
testcase_29 AC 167 ms
60,256 KB
testcase_30 AC 167 ms
60,424 KB
testcase_31 AC 133 ms
54,912 KB
testcase_32 AC 103 ms
44,928 KB
testcase_33 AC 134 ms
55,040 KB
testcase_34 AC 135 ms
54,144 KB
testcase_35 AC 169 ms
60,724 KB
testcase_36 AC 133 ms
54,912 KB
testcase_37 AC 105 ms
45,312 KB
testcase_38 AC 135 ms
54,912 KB
testcase_39 AC 123 ms
50,176 KB
testcase_40 AC 173 ms
60,276 KB
testcase_41 AC 178 ms
60,640 KB
testcase_42 AC 109 ms
45,952 KB
testcase_43 AC 130 ms
52,608 KB
testcase_44 AC 97 ms
41,856 KB
testcase_45 AC 84 ms
37,248 KB
testcase_46 AC 134 ms
54,016 KB
testcase_47 AC 115 ms
48,640 KB
testcase_48 AC 107 ms
43,904 KB
testcase_49 AC 89 ms
39,552 KB
testcase_50 AC 128 ms
53,248 KB
testcase_51 AC 59 ms
30,464 KB
testcase_52 AC 166 ms
213,832 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.csproj を復元しました (104 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[][] NArr(long n) => Enumerable.Repeat(0, (int)n).Select(_ => NList).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]);

        var len1 = Len(0, tree);
        var lenn1 = Len(n - 2, tree);
        var lenn = Len(n - 1, tree);
        var ans = Math.Min(len1[n - 2] + lenn1[n - 1] + lenn[0], len1[n - 1] + lenn[n - 2] + lenn1[0]);
        WriteLine(ans >= int.MaxValue / 10 ? -1 : ans);
    }
    static int[] Len(int s, List<int>[] tree)
    {
        var ans = Enumerable.Repeat(int.MaxValue / 10, tree.Length).ToArray();
        ans[s] = 0;
        var q = new Queue<int>();
        q.Enqueue(s);
        while (q.Count > 0)
        {
            var cur = q.Dequeue();
            foreach (var next in tree[cur])
            {
                if (ans[next] <= ans[cur] + 1) continue;
                ans[next] = ans[cur] + 1;
                q.Enqueue(next);
            }
        }
        return ans;
    }
}
0