結果

問題 No.1750 ラムドスウイルスの感染拡大-hard
ユーザー ks2mks2m
提出日時 2021-11-19 21:47:44
言語 Java21
(openjdk 21)
結果
AC  
実行時間 1,480 ms / 2,000 ms
コード長 1,385 bytes
コンパイル時間 2,148 ms
コンパイル使用メモリ 76,864 KB
実行使用メモリ 46,596 KB
最終ジャッジ日時 2024-06-10 08:32:43
合計ジャッジ時間 22,557 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 110 ms
40,924 KB
testcase_01 AC 117 ms
41,624 KB
testcase_02 AC 98 ms
40,108 KB
testcase_03 AC 99 ms
40,340 KB
testcase_04 AC 235 ms
44,096 KB
testcase_05 AC 111 ms
41,472 KB
testcase_06 AC 111 ms
41,452 KB
testcase_07 AC 99 ms
40,344 KB
testcase_08 AC 353 ms
43,456 KB
testcase_09 AC 345 ms
42,512 KB
testcase_10 AC 340 ms
42,664 KB
testcase_11 AC 349 ms
44,468 KB
testcase_12 AC 453 ms
46,260 KB
testcase_13 AC 416 ms
44,844 KB
testcase_14 AC 1,454 ms
46,572 KB
testcase_15 AC 1,463 ms
45,916 KB
testcase_16 AC 1,480 ms
46,412 KB
testcase_17 AC 1,430 ms
46,268 KB
testcase_18 AC 1,473 ms
46,464 KB
testcase_19 AC 1,439 ms
45,940 KB
testcase_20 AC 1,183 ms
45,820 KB
testcase_21 AC 1,238 ms
46,136 KB
testcase_22 AC 400 ms
45,712 KB
testcase_23 AC 1,460 ms
46,596 KB
testcase_24 AC 278 ms
43,104 KB
testcase_25 AC 477 ms
45,248 KB
testcase_26 AC 246 ms
43,468 KB
testcase_27 AC 113 ms
40,524 KB
testcase_28 AC 150 ms
41,752 KB
testcase_29 AC 107 ms
40,416 KB
testcase_30 AC 379 ms
45,868 KB
testcase_31 AC 363 ms
45,672 KB
testcase_32 AC 380 ms
45,984 KB
testcase_33 AC 357 ms
45,768 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {
	public static void main(String[] args) throws Exception {
		Scanner sc = new Scanner(System.in);
		int n = sc.nextInt();
		int m = sc.nextInt();
		long t = sc.nextLong();
		long[][] a = new long[n][n];
		for (int i = 0; i < m; i++) {
			int u = sc.nextInt();
			int v = sc.nextInt();
			a[u][v] = 1;
			a[v][u] = 1;
		}
		sc.close();

		int mod = 998244353;
		long[][] b = matrixPow(a, t, mod);
		long[] c = new long[n];
		c[0] = 1;
		long[] d = matrixMul1(c, b, mod);
		System.out.println(d[0]);
	}

	static long[][] matrixPow(long[][] a, long k, int m) {
		if (k == 1) {
			return a;
		}
		long[][] ret = matrixPow(a, k / 2, m);
		ret = matrixMul(ret, ret, m);
		if (k % 2 == 1) {
			ret = matrixMul(ret, a, m);
		}
		return ret;
	}

	static long[][] matrixMul(long[][] a, long[][] b, int m) {
		int h = a.length;
		int w = b[0].length;
		int n = a[0].length;
		long[][] c = new long[h][w];
		for (int i = 0; i < h; i++) {
			for (int j = 0; j < w; j++) {
				for (int x = 0; x < n; x++) {
					c[i][j] += a[i][x] * b[x][j];
					c[i][j] %= m;
				}
			}
		}
		return c;
	}

	static long[] matrixMul1(long[] a, long[][] b, int m) {
		int w = b[0].length;
		int n = a.length;
		long[] c = new long[w];
		for (int j = 0; j < w; j++) {
			for (int x = 0; x < n; x++) {
				c[j] += a[x] * b[x][j];
				c[j] %= m;
			}
		}
		return c;
	}
}
0