結果

問題 No.1340 おーじ君をさがせ
ユーザー kakel-sankakel-san
提出日時 2024-08-19 22:25:00
言語 C#
(.NET 8.0.203)
結果
AC  
実行時間 278 ms / 2,000 ms
コード長 2,120 bytes
コンパイル時間 13,595 ms
コンパイル使用メモリ 169,660 KB
実行使用メモリ 187,656 KB
最終ジャッジ日時 2024-08-19 22:25:23
合計ジャッジ時間 17,276 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 56 ms
30,336 KB
testcase_01 AC 54 ms
30,336 KB
testcase_02 AC 63 ms
29,948 KB
testcase_03 AC 57 ms
30,336 KB
testcase_04 AC 56 ms
30,464 KB
testcase_05 AC 56 ms
30,336 KB
testcase_06 AC 57 ms
30,208 KB
testcase_07 AC 57 ms
30,208 KB
testcase_08 AC 53 ms
30,080 KB
testcase_09 AC 59 ms
30,208 KB
testcase_10 AC 66 ms
30,588 KB
testcase_11 AC 103 ms
31,488 KB
testcase_12 AC 71 ms
30,976 KB
testcase_13 AC 87 ms
31,616 KB
testcase_14 AC 137 ms
32,384 KB
testcase_15 AC 134 ms
32,000 KB
testcase_16 AC 63 ms
31,104 KB
testcase_17 AC 78 ms
31,488 KB
testcase_18 AC 92 ms
31,616 KB
testcase_19 AC 60 ms
30,820 KB
testcase_20 AC 58 ms
30,848 KB
testcase_21 AC 102 ms
35,896 KB
testcase_22 AC 172 ms
34,176 KB
testcase_23 AC 104 ms
34,048 KB
testcase_24 AC 260 ms
34,944 KB
testcase_25 AC 78 ms
32,892 KB
testcase_26 AC 69 ms
32,128 KB
testcase_27 AC 63 ms
31,612 KB
testcase_28 AC 69 ms
32,896 KB
testcase_29 AC 63 ms
31,872 KB
testcase_30 AC 105 ms
34,176 KB
testcase_31 AC 277 ms
37,504 KB
testcase_32 AC 270 ms
39,388 KB
testcase_33 AC 278 ms
37,376 KB
testcase_34 AC 236 ms
36,864 KB
testcase_35 AC 269 ms
37,632 KB
testcase_36 AC 55 ms
29,820 KB
testcase_37 AC 77 ms
33,920 KB
testcase_38 AC 266 ms
37,376 KB
testcase_39 AC 128 ms
34,688 KB
testcase_40 AC 130 ms
34,816 KB
testcase_41 AC 127 ms
34,816 KB
testcase_42 AC 55 ms
30,208 KB
testcase_43 AC 55 ms
30,336 KB
testcase_44 AC 55 ms
30,208 KB
testcase_45 AC 58 ms
30,336 KB
testcase_46 AC 102 ms
32,128 KB
testcase_47 AC 101 ms
31,868 KB
testcase_48 AC 102 ms
32,128 KB
testcase_49 AC 108 ms
31,616 KB
testcase_50 AC 110 ms
31,592 KB
testcase_51 AC 112 ms
31,476 KB
testcase_52 AC 149 ms
32,384 KB
testcase_53 AC 150 ms
32,256 KB
testcase_54 AC 149 ms
32,512 KB
testcase_55 AC 131 ms
32,256 KB
testcase_56 AC 59 ms
30,208 KB
testcase_57 AC 60 ms
30,336 KB
testcase_58 AC 58 ms
29,948 KB
testcase_59 AC 86 ms
31,360 KB
testcase_60 AC 57 ms
30,464 KB
testcase_61 AC 94 ms
187,656 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.csproj を復元しました (106 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();
    public static void Main()
    {
        Solve();
    }
    static void Solve()
    {
        var c = ReadLine().Split();
        var (n, m, t) = (int.Parse(c[0]), int.Parse(c[1]), long.Parse(c[2]));
        var map = NArr(m);
        if (t == 0)
        {
            WriteLine(1);
            return;
        }

        var x = new int[n][];
        for (var i = 0; i < n; ++i) x[i] = new int[n];
        foreach (var edge in map) x[edge[0]][edge[1]] = 1;
        var a = new int[][] { new int[n] };
        a[0][0] = 1;
        var b = Matrix.Mul(a, Matrix.Pow(x, t));
        WriteLine(b[0].Count(bi => bi == 1));
    }
    class Matrix
    {
        // 行列の累乗
        public static int[][] Pow(int[][] m, long k)
        {
            var multi = m;
            var r = new int[m.Length][];
            for (var i = 0; i < m.Length; ++i)
            {
                r[i] = new int[m.Length];
                r[i][i] = 1;
            }
            while (k > 0)
            {
                if ((k & 1) == 1) r = Mul(r, multi);
                multi = Mul(multi, multi);
                k >>= 1;
            }
            return r;
        }
        // 行列の積
        public static int[][] Mul(int[][] x, int[][] y)
        {
            var r = new int[x.Length][];
            for (var i = 0; i < x.Length; ++i) r[i] = new int[y[0].Length];
            for (var i = 0; i < x.Length; ++i) for (var k = 0; k < x[0].Length; ++k)
            {
                for (var j = 0; j < y[0].Length; ++j) r[i][j] = r[i][j] + x[i][k] * y[k][j];
            }
            for (var i = 0; i < r.Length; ++i) for (var j = 0; j < r[i].Length; ++j) if (r[i][j] != 0) r[i][j] = 1;
            return r;
        }
    }
}
0