結果

問題 No.572 妖精の演奏
ユーザー 37zigen37zigen
提出日時 2017-10-07 06:41:59
言語 Java21
(openjdk 21)
結果
AC  
実行時間 241 ms / 2,000 ms
コード長 1,241 bytes
コンパイル時間 2,198 ms
コンパイル使用メモリ 78,128 KB
実行使用メモリ 42,844 KB
最終ジャッジ日時 2024-11-17 03:53:40
合計ジャッジ時間 6,717 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 158 ms
41,148 KB
testcase_01 AC 147 ms
41,124 KB
testcase_02 AC 145 ms
41,324 KB
testcase_03 AC 149 ms
41,292 KB
testcase_04 AC 141 ms
41,000 KB
testcase_05 AC 160 ms
41,640 KB
testcase_06 AC 161 ms
41,380 KB
testcase_07 AC 162 ms
41,752 KB
testcase_08 AC 164 ms
41,436 KB
testcase_09 AC 171 ms
41,668 KB
testcase_10 AC 215 ms
42,468 KB
testcase_11 AC 227 ms
42,640 KB
testcase_12 AC 223 ms
42,592 KB
testcase_13 AC 241 ms
42,844 KB
testcase_14 AC 207 ms
42,364 KB
testcase_15 AC 216 ms
42,556 KB
testcase_16 AC 206 ms
42,516 KB
testcase_17 AC 212 ms
41,980 KB
testcase_18 AC 153 ms
41,276 KB
testcase_19 AC 121 ms
40,164 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.ArrayList;
import java.util.Arrays;
import java.util.Scanner;

public class Main {
	public static void main(String[] args) {
		new Main().run();
	}

	void run() {
		Scanner sc = new Scanner(System.in);
		long n = sc.nextLong();
		int m = sc.nextInt();
		long[][] a = new long[m][m];
		for (int i = 0; i < m; ++i) {
			for (int j = 0; j < m; ++j)
				a[i][j] = sc.nextLong();
		}
		a = pow(a, n - 1);
		long ans = 0;
		for (int i = 0; i < a.length; ++i) {
			for (int j = 0; j < a[i].length; ++j) {
				ans = Math.max(ans, a[i][j]);
			}
		}
		System.out.println(ans);
	}

	long[][] pow(long[][] a, long n) {
		if (a.length != a[0].length)
			throw new AssertionError();
		long[][] ret = new long[a.length][a.length];
		for (; n > 0; n >>= 1, a = mul(a, a)) {
			if (n % 2 == 1) {
				ret = mul(ret, a);
			}
		}
		return ret;
	}

	long[][] mul(long[][] a, long[][] b) {
		long[][] ret = new long[a.length][b[0].length];
		for (int i = 0; i < a.length; ++i) {
			for (int j = 0; j < b[i].length; ++j) {
				for (int m = 0; m < a[i].length; ++m) {
					ret[i][j] = Math.max(ret[i][j], a[i][m] + b[m][j]);
				}
			}
		}
		return ret;
	}

	void tr(Object... objects) {
		System.out.println(Arrays.deepToString(objects));
	}

}
0