結果

問題 No.1750 ラムドスウイルスの感染拡大-hard
ユーザー merlinmerlin
提出日時 2021-11-19 22:32:44
言語 Java21
(openjdk 21)
結果
AC  
実行時間 1,651 ms / 2,000 ms
コード長 1,525 bytes
コンパイル時間 2,523 ms
コンパイル使用メモリ 77,904 KB
実行使用メモリ 52,952 KB
最終ジャッジ日時 2024-06-10 09:45:02
合計ジャッジ時間 22,813 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 58 ms
50,244 KB
testcase_01 AC 57 ms
50,172 KB
testcase_02 AC 55 ms
50,128 KB
testcase_03 AC 54 ms
50,212 KB
testcase_04 AC 178 ms
52,876 KB
testcase_05 AC 58 ms
50,240 KB
testcase_06 AC 55 ms
50,284 KB
testcase_07 AC 55 ms
50,284 KB
testcase_08 AC 374 ms
52,756 KB
testcase_09 AC 378 ms
52,716 KB
testcase_10 AC 377 ms
52,652 KB
testcase_11 AC 327 ms
52,784 KB
testcase_12 AC 412 ms
52,776 KB
testcase_13 AC 398 ms
52,792 KB
testcase_14 AC 1,599 ms
52,816 KB
testcase_15 AC 1,629 ms
52,856 KB
testcase_16 AC 1,642 ms
52,904 KB
testcase_17 AC 1,614 ms
52,736 KB
testcase_18 AC 1,651 ms
52,696 KB
testcase_19 AC 1,589 ms
52,576 KB
testcase_20 AC 1,123 ms
52,732 KB
testcase_21 AC 1,313 ms
52,812 KB
testcase_22 AC 326 ms
52,952 KB
testcase_23 AC 1,519 ms
52,764 KB
testcase_24 AC 267 ms
52,644 KB
testcase_25 AC 490 ms
52,804 KB
testcase_26 AC 228 ms
52,832 KB
testcase_27 AC 63 ms
50,192 KB
testcase_28 AC 89 ms
51,304 KB
testcase_29 AC 60 ms
50,060 KB
testcase_30 AC 319 ms
52,840 KB
testcase_31 AC 319 ms
52,724 KB
testcase_32 AC 302 ms
52,748 KB
testcase_33 AC 297 ms
52,808 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;
import java.util.*;

class Main
{
    public static void main(String args[])throws Exception
    {
        BufferedReader bu=new BufferedReader(new InputStreamReader(System.in));
        StringBuilder sb=new StringBuilder();
        String s[]=bu.readLine().split(" ");
        int n=Integer.parseInt(s[0]),m=Integer.parseInt(s[1]); long t=Long.parseLong(s[2]);
        int i; long a[][]=new long[n][n];
        for(i=0;i<m;i++)
        {
            s=bu.readLine().split(" ");
            int u=Integer.parseInt(s[0]),v=Integer.parseInt(s[1]);
            a[u][v]=a[v][u]=1;
        }

        long ans[][]=power(a,t),dp[][]=new long[1][n];
        dp[0][0]=1;
        multiply(dp,ans);
        System.out.println(dp[0][0]);
    }

    static long temp[][]=new long[100][100],M=998244353;
    static void multiply(long a[][],long b[][])
    {
        int i,j,k,n=a.length,m=a[0].length,l=b[0].length;
        for(i=0;i<n;i++)
        for(j=0;j<l;j++)
        {
            temp[i][j]=0;
            for(k=0;k<m;k++)
            temp[i][j]=(temp[i][j]+a[i][k]*b[k][j])%M;
        }

        //in out problem n==m==k
        for(i=0;i<n;i++)
        for(j=0;j<l;j++)
        a[i][j]=temp[i][j];
    }

    static long[][] power(long a[][],long b)
    {
        int i,n=a.length;
        long res[][]=new long[n][n];
        for(i=0;i<n;i++) res[i][i]=1;
        while(b!=0)
        {
            if(b%2==1) multiply(res,a);
            b>>=1;
            multiply(a,a);
        }
        return res;
    }
}
0