結果

問題 No.1750 ラムドスウイルスの感染拡大-hard
ユーザー tentententen
提出日時 2023-01-17 09:05:50
言語 Java21
(openjdk 21)
結果
AC  
実行時間 464 ms / 2,000 ms
コード長 2,700 bytes
コンパイル時間 3,372 ms
コンパイル使用メモリ 91,220 KB
実行使用メモリ 57,676 KB
最終ジャッジ日時 2024-06-10 13:26:17
合計ジャッジ時間 12,919 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 55 ms
50,196 KB
testcase_01 AC 55 ms
50,044 KB
testcase_02 AC 55 ms
50,424 KB
testcase_03 AC 52 ms
50,088 KB
testcase_04 AC 164 ms
52,764 KB
testcase_05 AC 54 ms
50,264 KB
testcase_06 AC 54 ms
50,072 KB
testcase_07 AC 53 ms
50,068 KB
testcase_08 AC 444 ms
57,452 KB
testcase_09 AC 449 ms
57,480 KB
testcase_10 AC 457 ms
57,304 KB
testcase_11 AC 463 ms
57,440 KB
testcase_12 AC 464 ms
57,676 KB
testcase_13 AC 461 ms
57,460 KB
testcase_14 AC 461 ms
57,348 KB
testcase_15 AC 459 ms
57,656 KB
testcase_16 AC 457 ms
57,668 KB
testcase_17 AC 453 ms
57,228 KB
testcase_18 AC 454 ms
57,424 KB
testcase_19 AC 459 ms
57,528 KB
testcase_20 AC 358 ms
57,600 KB
testcase_21 AC 381 ms
57,332 KB
testcase_22 AC 164 ms
53,116 KB
testcase_23 AC 418 ms
57,376 KB
testcase_24 AC 144 ms
52,648 KB
testcase_25 AC 198 ms
54,720 KB
testcase_26 AC 139 ms
52,704 KB
testcase_27 AC 60 ms
50,336 KB
testcase_28 AC 92 ms
51,800 KB
testcase_29 AC 60 ms
50,192 KB
testcase_30 AC 159 ms
52,792 KB
testcase_31 AC 162 ms
52,872 KB
testcase_32 AC 160 ms
52,768 KB
testcase_33 AC 160 ms
52,924 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