結果

問題 No.572 妖精の演奏
ユーザー uafr_csuafr_cs
提出日時 2017-11-06 21:30:35
言語 Java21
(openjdk 21)
結果
AC  
実行時間 205 ms / 2,000 ms
コード長 1,282 bytes
コンパイル時間 2,273 ms
コンパイル使用メモリ 77,308 KB
実行使用メモリ 56,208 KB
最終ジャッジ日時 2024-11-24 04:09:06
合計ジャッジ時間 6,004 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 132 ms
56,208 KB
testcase_01 AC 135 ms
53,968 KB
testcase_02 AC 134 ms
54,244 KB
testcase_03 AC 130 ms
54,088 KB
testcase_04 AC 128 ms
53,904 KB
testcase_05 AC 143 ms
54,156 KB
testcase_06 AC 140 ms
54,040 KB
testcase_07 AC 138 ms
54,248 KB
testcase_08 AC 141 ms
54,188 KB
testcase_09 AC 161 ms
54,312 KB
testcase_10 AC 178 ms
54,740 KB
testcase_11 AC 190 ms
54,876 KB
testcase_12 AC 189 ms
54,480 KB
testcase_13 AC 205 ms
54,776 KB
testcase_14 AC 185 ms
54,776 KB
testcase_15 AC 178 ms
54,288 KB
testcase_16 AC 188 ms
54,652 KB
testcase_17 AC 183 ms
54,844 KB
testcase_18 AC 135 ms
54,196 KB
testcase_19 AC 114 ms
53,956 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Arrays;
import java.util.LinkedList;
import java.util.Scanner;

public class Main {
	
	public static long[][] mat_mul(int m, long[][] mat, long p){
		if(p == 0){
			return new long[m][m];
		}else if(p == 1){
			return mat;
		}else if(p % 2 == 1){
			return mat_max(m, mat, mat_mul(m, mat, p - 1));
		}else{
			long[][] ret = mat_mul(m, mat, p / 2);
			return mat_max(m, ret, ret);
		}
	}
	
	public static long[][] mat_max(int m, long[][] mat1, long[][] mat2){
		long[][] ret = new long[m][m];
		
		for(int from = 0; from < m; from++){
			for(int to = 0; to < m; to++){
				for(int i = 0; i < m; i++){
					ret[from][to] = Math.max(ret[from][to], mat1[from][i] + mat2[i][to]);
				}
			}
		}
		
		return ret;
	}
	
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		
		final int n = sc.nextInt();
		final int m = sc.nextInt();
		
		long[][] mat = new long[m][m];
		for(int i = 0; i < m; i++){
			for(int j = 0; j < m; j++){
				mat[i][j] = sc.nextLong();
			}
		}
		
		long[][] ret = mat_mul(m, mat, n - 1);
		
		long max = 0;
		for(int i = 0; i < m; i++){
			for(int j = 0; j < m; j++){
				//System.out.print(ret[i][j] + " ");
				max = Math.max(max, ret[i][j]);
			}
			//System.out.println();
		}
		
		System.out.println(max);
	}
}
0