結果

問題 No.1750 ラムドスウイルスの感染拡大-hard
ユーザー tentententen
提出日時 2023-07-19 13:04:38
言語 Java21
(openjdk 21)
結果
AC  
実行時間 439 ms / 2,000 ms
コード長 2,678 bytes
コンパイル時間 3,270 ms
コンパイル使用メモリ 84,884 KB
実行使用メモリ 47,200 KB
最終ジャッジ日時 2024-09-19 11:38:49
合計ジャッジ時間 11,654 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 49 ms
37,156 KB
testcase_01 AC 49 ms
36,988 KB
testcase_02 AC 50 ms
37,072 KB
testcase_03 AC 48 ms
36,960 KB
testcase_04 AC 147 ms
40,744 KB
testcase_05 AC 49 ms
36,788 KB
testcase_06 AC 49 ms
37,064 KB
testcase_07 AC 48 ms
37,024 KB
testcase_08 AC 419 ms
46,772 KB
testcase_09 AC 431 ms
46,952 KB
testcase_10 AC 418 ms
47,008 KB
testcase_11 AC 427 ms
47,000 KB
testcase_12 AC 427 ms
47,144 KB
testcase_13 AC 421 ms
47,200 KB
testcase_14 AC 425 ms
47,132 KB
testcase_15 AC 422 ms
47,012 KB
testcase_16 AC 439 ms
47,176 KB
testcase_17 AC 419 ms
47,004 KB
testcase_18 AC 423 ms
46,904 KB
testcase_19 AC 413 ms
46,984 KB
testcase_20 AC 333 ms
46,992 KB
testcase_21 AC 350 ms
47,040 KB
testcase_22 AC 150 ms
40,876 KB
testcase_23 AC 382 ms
46,892 KB
testcase_24 AC 134 ms
40,680 KB
testcase_25 AC 204 ms
41,360 KB
testcase_26 AC 125 ms
40,224 KB
testcase_27 AC 53 ms
37,168 KB
testcase_28 AC 80 ms
38,356 KB
testcase_29 AC 50 ms
37,200 KB
testcase_30 AC 141 ms
41,024 KB
testcase_31 AC 144 ms
41,020 KB
testcase_32 AC 143 ms
41,004 KB
testcase_33 AC 148 ms
40,760 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];
        for (int i = 0; i < m; i++) {
            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] % MOD;
                    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