結果

問題 No.1750 ラムドスウイルスの感染拡大-hard
ユーザー tentententen
提出日時 2023-07-19 13:04:38
言語 Java21
(openjdk 21)
結果
AC  
実行時間 479 ms / 2,000 ms
コード長 2,678 bytes
コンパイル時間 2,757 ms
コンパイル使用メモリ 91,760 KB
実行使用メモリ 60,652 KB
最終ジャッジ日時 2023-10-19 15:30:03
合計ジャッジ時間 13,140 ms
ジャッジサーバーID
(参考情報)
judge13 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 55 ms
53,632 KB
testcase_01 AC 55 ms
53,636 KB
testcase_02 AC 59 ms
52,524 KB
testcase_03 AC 57 ms
52,568 KB
testcase_04 AC 163 ms
54,196 KB
testcase_05 AC 55 ms
53,624 KB
testcase_06 AC 56 ms
52,528 KB
testcase_07 AC 57 ms
53,632 KB
testcase_08 AC 458 ms
58,620 KB
testcase_09 AC 472 ms
60,620 KB
testcase_10 AC 460 ms
60,420 KB
testcase_11 AC 472 ms
60,564 KB
testcase_12 AC 477 ms
60,596 KB
testcase_13 AC 479 ms
60,568 KB
testcase_14 AC 473 ms
60,608 KB
testcase_15 AC 474 ms
60,592 KB
testcase_16 AC 471 ms
60,564 KB
testcase_17 AC 463 ms
60,420 KB
testcase_18 AC 460 ms
60,436 KB
testcase_19 AC 462 ms
60,640 KB
testcase_20 AC 377 ms
60,652 KB
testcase_21 AC 390 ms
60,452 KB
testcase_22 AC 167 ms
56,124 KB
testcase_23 AC 430 ms
60,644 KB
testcase_24 AC 149 ms
55,956 KB
testcase_25 AC 201 ms
58,136 KB
testcase_26 AC 139 ms
56,156 KB
testcase_27 AC 61 ms
53,644 KB
testcase_28 AC 94 ms
55,196 KB
testcase_29 AC 63 ms
53,636 KB
testcase_30 AC 164 ms
56,268 KB
testcase_31 AC 164 ms
56,080 KB
testcase_32 AC 163 ms
56,100 KB
testcase_33 AC 162 ms
56,128 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