結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 156 ms
41,476 KB
testcase_01 AC 155 ms
41,708 KB
testcase_02 AC 156 ms
41,260 KB
testcase_03 AC 152 ms
41,876 KB
testcase_04 AC 147 ms
41,292 KB
testcase_05 AC 167 ms
41,852 KB
testcase_06 AC 169 ms
42,056 KB
testcase_07 AC 165 ms
41,428 KB
testcase_08 AC 168 ms
41,888 KB
testcase_09 AC 189 ms
41,980 KB
testcase_10 AC 222 ms
42,672 KB
testcase_11 AC 227 ms
43,116 KB
testcase_12 AC 230 ms
42,516 KB
testcase_13 AC 233 ms
43,164 KB
testcase_14 AC 214 ms
42,648 KB
testcase_15 AC 211 ms
42,652 KB
testcase_16 AC 213 ms
42,224 KB
testcase_17 AC 210 ms
42,376 KB
testcase_18 AC 158 ms
41,264 KB
testcase_19 AC 138 ms
41,368 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();
		}
		long[][] v = new long[m][1];
		v = mul(pow(a, n - 1), v);
		long ans = 0;
		for (int i = 0; i < v.length; ++i)
			ans = Math.max(ans, v[i][0]);
		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