結果

問題 No.1750 ラムドスウイルスの感染拡大-hard
ユーザー tentententen
提出日時 2023-11-30 18:35:34
言語 Java21
(openjdk 21)
結果
AC  
実行時間 563 ms / 2,000 ms
コード長 2,660 bytes
コンパイル時間 2,524 ms
コンパイル使用メモリ 91,040 KB
実行使用メモリ 61,640 KB
最終ジャッジ日時 2023-11-30 18:35:48
合計ジャッジ時間 14,067 ms
ジャッジサーバーID
(参考情報)
judge15 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 51 ms
54,008 KB
testcase_01 AC 55 ms
53,980 KB
testcase_02 AC 53 ms
53,984 KB
testcase_03 AC 52 ms
54,000 KB
testcase_04 AC 171 ms
56,632 KB
testcase_05 AC 52 ms
53,968 KB
testcase_06 AC 50 ms
53,992 KB
testcase_07 AC 51 ms
53,984 KB
testcase_08 AC 529 ms
59,424 KB
testcase_09 AC 547 ms
61,444 KB
testcase_10 AC 552 ms
61,388 KB
testcase_11 AC 537 ms
61,516 KB
testcase_12 AC 541 ms
61,500 KB
testcase_13 AC 563 ms
61,640 KB
testcase_14 AC 545 ms
61,508 KB
testcase_15 AC 541 ms
61,532 KB
testcase_16 AC 545 ms
61,520 KB
testcase_17 AC 533 ms
61,368 KB
testcase_18 AC 527 ms
61,380 KB
testcase_19 AC 527 ms
61,388 KB
testcase_20 AC 417 ms
61,368 KB
testcase_21 AC 434 ms
61,404 KB
testcase_22 AC 183 ms
56,836 KB
testcase_23 AC 486 ms
61,456 KB
testcase_24 AC 164 ms
56,684 KB
testcase_25 AC 229 ms
58,728 KB
testcase_26 AC 152 ms
56,676 KB
testcase_27 AC 58 ms
53,968 KB
testcase_28 AC 89 ms
55,408 KB
testcase_29 AC 57 ms
53,988 KB
testcase_30 AC 179 ms
56,812 KB
testcase_31 AC 179 ms
56,644 KB
testcase_32 AC 185 ms
56,824 KB
testcase_33 AC 176 ms
56,660 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

public class Main {
    static final int MOD = 998244353;
    public static void main(String[] args) throws Exception {
        Scanner sc = new Scanner();
        int n = sc.nextInt();
        int m = sc.nextInt();
        long t = sc.nextLong();
        long[][][] matrix = new long[60][n][n];
        while (m-- > 0) {
            int a = sc.nextInt();
            int b = sc.nextInt();
            matrix[0][a][b] = 1;
            matrix[0][b][a] = 1;
        }
        for (int i = 1; i < 60; i++) {
            for (int a = 0; a < n; a++) {
                for (int b = 0; b < n; b++) {
                    for (int c = 0; c < n; c++) {
                        matrix[i][a][c] += matrix[i - 1][a][b] * matrix[i - 1][b][c] % MOD;
                        matrix[i][a][c] %= MOD;
                    }
                }
            }
        }
        long[] ans = new long[n];
        ans[0] = 1;
        for (int i = 59; i >= 0; i--) {
            if (t < (1L << i)) {
                continue;
            }
            t -= (1L << i);
            long[] next = new long[n];
            for (int a = 0; a < n; a++) {
                for (int b = 0; b < n; b++) {
                    next[a] += matrix[i][a][b] * ans[b];
                    next[a] %= MOD;
                }
            }
            ans = next;
        }
        System.out.println(ans[0]);
    }
}
class Utilities {
    static String arrayToLineString(Object[] arr) {
        return Arrays.stream(arr).map(x -> x.toString()).collect(Collectors.joining("\n"));
    }
    
    static String arrayToLineString(int[] arr) {
        return String.join("\n", Arrays.stream(arr).mapToObj(String::valueOf).toArray(String[]::new));
    }
}
class Scanner {
    BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
    StringTokenizer st = new StringTokenizer("");
    StringBuilder sb = new StringBuilder();
    
    public Scanner() throws Exception {
        
    }
    
    public int nextInt() throws Exception {
        return Integer.parseInt(next());
    }
    
    public long nextLong() throws Exception {
        return Long.parseLong(next());
    }
    
    public double nextDouble() throws Exception {
        return Double.parseDouble(next());
    }
    
    public int[] nextIntArray() throws Exception {
        return Stream.of(br.readLine().split(" ")).mapToInt(Integer::parseInt).toArray();
    }
    
    public String next() throws Exception {
        while (!st.hasMoreTokens()) {
            st = new StringTokenizer(br.readLine());
        }
        return st.nextToken();
    }
    
}
0