結果

問題 No.1750 ラムドスウイルスの感染拡大-hard
ユーザー tentententen
提出日時 2023-03-27 14:55:57
言語 Java21
(openjdk 21)
結果
AC  
実行時間 478 ms / 2,000 ms
コード長 2,678 bytes
コンパイル時間 3,067 ms
コンパイル使用メモリ 95,956 KB
実行使用メモリ 47,376 KB
最終ジャッジ日時 2024-09-19 10:46:39
合計ジャッジ時間 13,097 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 57 ms
37,060 KB
testcase_01 AC 57 ms
36,792 KB
testcase_02 AC 59 ms
37,344 KB
testcase_03 AC 57 ms
37,172 KB
testcase_04 AC 166 ms
41,032 KB
testcase_05 AC 56 ms
37,196 KB
testcase_06 AC 56 ms
37,236 KB
testcase_07 AC 57 ms
37,260 KB
testcase_08 AC 460 ms
47,144 KB
testcase_09 AC 460 ms
46,992 KB
testcase_10 AC 460 ms
47,216 KB
testcase_11 AC 478 ms
47,088 KB
testcase_12 AC 471 ms
47,312 KB
testcase_13 AC 476 ms
47,040 KB
testcase_14 AC 478 ms
47,228 KB
testcase_15 AC 477 ms
47,376 KB
testcase_16 AC 476 ms
47,104 KB
testcase_17 AC 465 ms
47,108 KB
testcase_18 AC 462 ms
47,112 KB
testcase_19 AC 465 ms
46,988 KB
testcase_20 AC 368 ms
47,216 KB
testcase_21 AC 389 ms
47,020 KB
testcase_22 AC 174 ms
41,128 KB
testcase_23 AC 429 ms
47,208 KB
testcase_24 AC 147 ms
40,528 KB
testcase_25 AC 201 ms
41,516 KB
testcase_26 AC 144 ms
40,228 KB
testcase_27 AC 63 ms
37,188 KB
testcase_28 AC 94 ms
38,312 KB
testcase_29 AC 64 ms
37,388 KB
testcase_30 AC 167 ms
41,152 KB
testcase_31 AC 165 ms
41,148 KB
testcase_32 AC 165 ms
41,112 KB
testcase_33 AC 163 ms
41,036 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