結果

問題 No.1750 ラムドスウイルスの感染拡大-hard
ユーザー merlinmerlin
提出日時 2021-11-19 22:35:58
言語 Java21
(openjdk 21)
結果
AC  
実行時間 1,451 ms / 2,000 ms
コード長 1,626 bytes
コンパイル時間 1,802 ms
コンパイル使用メモリ 77,472 KB
実行使用メモリ 40,264 KB
最終ジャッジ日時 2024-06-10 09:47:36
合計ジャッジ時間 19,672 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 46 ms
37,064 KB
testcase_01 AC 53 ms
37,096 KB
testcase_02 AC 46 ms
37,248 KB
testcase_03 AC 47 ms
36,996 KB
testcase_04 AC 130 ms
39,924 KB
testcase_05 AC 46 ms
37,096 KB
testcase_06 AC 47 ms
36,692 KB
testcase_07 AC 47 ms
36,700 KB
testcase_08 AC 320 ms
39,548 KB
testcase_09 AC 317 ms
39,564 KB
testcase_10 AC 317 ms
39,700 KB
testcase_11 AC 287 ms
40,056 KB
testcase_12 AC 355 ms
39,932 KB
testcase_13 AC 342 ms
40,028 KB
testcase_14 AC 1,380 ms
40,124 KB
testcase_15 AC 1,412 ms
39,968 KB
testcase_16 AC 1,443 ms
40,112 KB
testcase_17 AC 1,405 ms
39,696 KB
testcase_18 AC 1,451 ms
39,808 KB
testcase_19 AC 1,390 ms
39,648 KB
testcase_20 AC 999 ms
39,628 KB
testcase_21 AC 1,157 ms
39,888 KB
testcase_22 AC 282 ms
39,952 KB
testcase_23 AC 1,355 ms
39,896 KB
testcase_24 AC 224 ms
39,388 KB
testcase_25 AC 424 ms
39,592 KB
testcase_26 AC 198 ms
39,724 KB
testcase_27 AC 53 ms
37,036 KB
testcase_28 AC 73 ms
38,060 KB
testcase_29 AC 51 ms
37,164 KB
testcase_30 AC 271 ms
39,812 KB
testcase_31 AC 272 ms
39,856 KB
testcase_32 AC 264 ms
40,264 KB
testcase_33 AC 258 ms
39,980 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];  //multiply the input graph t times, to get final sequence(matrix exponentiation)
        dp[0][0]=1;
        multiply(dp,ans);   //find ans from it
        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;
        }

        for(i=0;i<n;i++)
        for(j=0;j<l;j++)
        a[i][j]=temp[i][j]; //1st matrix will store result
    }

    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