結果

問題 No.1750 ラムドスウイルスの感染拡大-hard
ユーザー tentententen
提出日時 2023-01-17 09:05:50
言語 Java21
(openjdk 21)
結果
AC  
実行時間 474 ms / 2,000 ms
コード長 2,700 bytes
コンパイル時間 2,765 ms
コンパイル使用メモリ 86,984 KB
実行使用メモリ 58,408 KB
最終ジャッジ日時 2023-08-30 13:24:46
合計ジャッジ時間 13,028 ms
ジャッジサーバーID
(参考情報)
judge12 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 47 ms
49,616 KB
testcase_01 AC 47 ms
47,532 KB
testcase_02 AC 47 ms
50,112 KB
testcase_03 AC 46 ms
49,432 KB
testcase_04 AC 163 ms
53,316 KB
testcase_05 AC 46 ms
49,700 KB
testcase_06 AC 46 ms
49,580 KB
testcase_07 AC 45 ms
49,704 KB
testcase_08 AC 435 ms
58,032 KB
testcase_09 AC 437 ms
58,260 KB
testcase_10 AC 443 ms
57,920 KB
testcase_11 AC 474 ms
57,976 KB
testcase_12 AC 454 ms
58,128 KB
testcase_13 AC 444 ms
58,328 KB
testcase_14 AC 453 ms
58,344 KB
testcase_15 AC 453 ms
58,408 KB
testcase_16 AC 454 ms
58,344 KB
testcase_17 AC 436 ms
58,024 KB
testcase_18 AC 434 ms
58,160 KB
testcase_19 AC 438 ms
57,916 KB
testcase_20 AC 380 ms
57,868 KB
testcase_21 AC 396 ms
57,984 KB
testcase_22 AC 160 ms
53,364 KB
testcase_23 AC 403 ms
58,000 KB
testcase_24 AC 145 ms
53,420 KB
testcase_25 AC 199 ms
55,268 KB
testcase_26 AC 135 ms
53,432 KB
testcase_27 AC 56 ms
50,232 KB
testcase_28 AC 86 ms
52,284 KB
testcase_29 AC 54 ms
50,284 KB
testcase_30 AC 160 ms
53,584 KB
testcase_31 AC 164 ms
53,608 KB
testcase_32 AC 165 ms
53,536 KB
testcase_33 AC 163 ms
53,972 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 left = sc.nextInt();
            int right = sc.nextInt();
            matrix[0][left][right] = 1;
            matrix[0][right][left] = 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