結果

問題 No.1750 ラムドスウイルスの感染拡大-hard
ユーザー tentententen
提出日時 2021-11-22 10:21:25
言語 Java21
(openjdk 21)
結果
AC  
実行時間 459 ms / 2,000 ms
コード長 2,433 bytes
コンパイル時間 2,450 ms
コンパイル使用メモリ 78,900 KB
実行使用メモリ 48,156 KB
最終ジャッジ日時 2024-06-23 20:10:24
合計ジャッジ時間 12,550 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 52 ms
36,692 KB
testcase_01 AC 51 ms
37,220 KB
testcase_02 AC 53 ms
37,396 KB
testcase_03 AC 49 ms
37,240 KB
testcase_04 AC 168 ms
41,856 KB
testcase_05 AC 50 ms
37,184 KB
testcase_06 AC 54 ms
37,092 KB
testcase_07 AC 52 ms
36,688 KB
testcase_08 AC 429 ms
47,696 KB
testcase_09 AC 426 ms
47,988 KB
testcase_10 AC 432 ms
47,844 KB
testcase_11 AC 440 ms
47,764 KB
testcase_12 AC 443 ms
47,552 KB
testcase_13 AC 443 ms
47,964 KB
testcase_14 AC 443 ms
47,760 KB
testcase_15 AC 447 ms
47,784 KB
testcase_16 AC 442 ms
48,008 KB
testcase_17 AC 431 ms
47,700 KB
testcase_18 AC 433 ms
48,156 KB
testcase_19 AC 459 ms
48,108 KB
testcase_20 AC 383 ms
48,144 KB
testcase_21 AC 400 ms
47,792 KB
testcase_22 AC 173 ms
42,164 KB
testcase_23 AC 404 ms
47,892 KB
testcase_24 AC 160 ms
41,428 KB
testcase_25 AC 200 ms
42,736 KB
testcase_26 AC 142 ms
41,448 KB
testcase_27 AC 59 ms
37,276 KB
testcase_28 AC 97 ms
39,092 KB
testcase_29 AC 58 ms
37,432 KB
testcase_30 AC 179 ms
41,872 KB
testcase_31 AC 174 ms
42,132 KB
testcase_32 AC 169 ms
41,920 KB
testcase_33 AC 174 ms
41,872 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;
import java.util.*;

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();
        ArrayList<ArrayList<Integer>> graph = new ArrayList<>();
        for (int i = 0; i < n; i++) {
            graph.add(new ArrayList<>());
        }
        for (int i = 0; i < m; i++) {
            int a = sc.nextInt();
            int b = sc.nextInt();
            graph.get(a).add(b);
            graph.get(b).add(a);
        }
        long[][][] matrixes = new long[63][n][n];
        for (int i = 0; i < n; i++) {
            for (int x : graph.get(i)) {
                matrixes[0][i][x] = 1;
            }
        }
        for (int i = 1; i < 63; i++) {
            for (int a = 0; a < n; a++) {
                for (int b = 0; b < n; b++) {
                    for (int c = 0; c < n; c++) {
                        matrixes[i][a][c] += matrixes[i - 1][a][b] * matrixes[i - 1][b][c] % MOD;
                        matrixes[i][a][c] %= MOD;
                    }
                }
            }
        }
        long[] ans = new long[n];
        ans[0] = 1;
        for (int i = 62; i >= 0 && t > 0; i--) {
            if (t < (1L << i)) {
                continue;
            }
            long[] next = new long[n];
            t -= (1L << i);
            for (int j = 0; j < n; j++) {
                for (int k = 0; k < n; k++) {
                    next[j] += matrixes[i][j][k] * ans[k] % MOD;
                    next[j] %= MOD;
                }
            }
            ans = next;
        }
        System.out.println(ans[0]);
    }
}

class Scanner {
    BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
    StringTokenizer st = new StringTokenizer("");
    
    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 String next() throws Exception {
        if (!st.hasMoreTokens()) {
            st = new StringTokenizer(br.readLine());
        }
        return st.nextToken();
    }
}
0