結果

問題 No.1750 ラムドスウイルスの感染拡大-hard
ユーザー kakel-sankakel-san
提出日時 2023-12-24 19:52:19
言語 C#
(.NET 8.0.203)
結果
AC  
実行時間 1,237 ms / 2,000 ms
コード長 2,004 bytes
コンパイル時間 8,263 ms
コンパイル使用メモリ 167,068 KB
実行使用メモリ 187,420 KB
最終ジャッジ日時 2024-09-27 13:47:26
合計ジャッジ時間 23,413 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 60 ms
30,208 KB
testcase_01 AC 59 ms
30,036 KB
testcase_02 AC 59 ms
30,208 KB
testcase_03 AC 59 ms
30,080 KB
testcase_04 AC 87 ms
31,232 KB
testcase_05 AC 60 ms
30,208 KB
testcase_06 AC 59 ms
29,824 KB
testcase_07 AC 59 ms
30,336 KB
testcase_08 AC 265 ms
31,736 KB
testcase_09 AC 264 ms
31,736 KB
testcase_10 AC 266 ms
32,128 KB
testcase_11 AC 215 ms
32,128 KB
testcase_12 AC 278 ms
32,384 KB
testcase_13 AC 265 ms
32,256 KB
testcase_14 AC 1,153 ms
37,760 KB
testcase_15 AC 1,179 ms
38,272 KB
testcase_16 AC 1,186 ms
38,528 KB
testcase_17 AC 1,201 ms
38,272 KB
testcase_18 AC 1,237 ms
38,272 KB
testcase_19 AC 1,186 ms
38,144 KB
testcase_20 AC 841 ms
36,088 KB
testcase_21 AC 961 ms
37,504 KB
testcase_22 AC 208 ms
32,768 KB
testcase_23 AC 1,126 ms
37,760 KB
testcase_24 AC 176 ms
32,512 KB
testcase_25 AC 358 ms
33,512 KB
testcase_26 AC 151 ms
32,000 KB
testcase_27 AC 64 ms
30,592 KB
testcase_28 AC 67 ms
30,720 KB
testcase_29 AC 63 ms
30,464 KB
testcase_30 AC 207 ms
32,896 KB
testcase_31 AC 199 ms
32,896 KB
testcase_32 AC 196 ms
32,376 KB
testcase_33 AC 191 ms
187,420 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.csproj を復元しました (99 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 long[] NList => ReadLine().Split().Select(long.Parse).ToArray();
    static long[][] NArr(long n) => Enumerable.Repeat(0, (int)n).Select(_ => NList).ToArray();
    public static void Main()
    {
        Solve();
    }
    static void Solve()
    {
        var c = NList;
        var (n, m, t) = (c[0], c[1], c[2]);
        var map = NArr(m);
        var a = new long[1][];
        a[0] = new long[n];
        a[0][0] = 1;
        var x = new long[n][];
        for (var i = 0; i < x.Length; ++i) x[i] = new long[n];
        foreach (var edge in map)
        {
            x[edge[0]][edge[1]] = 1;
            x[edge[1]][edge[0]] = 1;
        }
        var b = Matrix.Mul(a, Matrix.Pow(x, t));
        WriteLine(b[0][0]);
    }
    class Matrix
    {
        static int mod = 998_244_353;
        // 行列の累乗
        public static long[][] Pow(long[][] m, long k)
        {
            var multi = m;
            var r = new long[m.Length][];
            for (var i = 0; i < m.Length; ++i)
            {
                r[i] = new long[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 long[][] Mul(long[][] x, long[][] y)
        {
            var r = new long[x.Length][];
            for (var i = 0; i < x.Length; ++i) r[i] = new long[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]) % mod;
            }
            return r;
        }
    }
}
0