結果
問題 | No.572 妖精の演奏 |
ユーザー | tenten |
提出日時 | 2023-06-14 16:44:00 |
言語 | Java21 (openjdk 21) |
結果 |
AC
|
実行時間 | 103 ms / 2,000 ms |
コード長 | 2,599 bytes |
コンパイル時間 | 4,939 ms |
コンパイル使用メモリ | 92,164 KB |
実行使用メモリ | 52,496 KB |
最終ジャッジ日時 | 2024-06-23 00:42:34 |
合計ジャッジ時間 | 5,153 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 59 ms
50,552 KB |
testcase_01 | AC | 60 ms
50,576 KB |
testcase_02 | AC | 60 ms
50,328 KB |
testcase_03 | AC | 59 ms
50,488 KB |
testcase_04 | AC | 56 ms
50,268 KB |
testcase_05 | AC | 69 ms
51,264 KB |
testcase_06 | AC | 70 ms
51,172 KB |
testcase_07 | AC | 74 ms
51,212 KB |
testcase_08 | AC | 72 ms
51,196 KB |
testcase_09 | AC | 84 ms
51,536 KB |
testcase_10 | AC | 95 ms
52,396 KB |
testcase_11 | AC | 95 ms
52,496 KB |
testcase_12 | AC | 97 ms
52,388 KB |
testcase_13 | AC | 95 ms
52,304 KB |
testcase_14 | AC | 103 ms
52,168 KB |
testcase_15 | AC | 98 ms
52,304 KB |
testcase_16 | AC | 102 ms
51,884 KB |
testcase_17 | AC | 96 ms
52,328 KB |
testcase_18 | AC | 71 ms
51,092 KB |
testcase_19 | AC | 51 ms
50,484 KB |
ソースコード
import java.io.*; import java.util.*; import java.util.stream.*; public class Main { static int c; static int v; static int[] dp; public static void main(String[] args) throws Exception { Scanner sc = new Scanner(); long n = sc.nextLong() - 1; int m = sc.nextInt(); long[][][] matrix = new long[34][m][m]; for (int i = 0; i < m; i++) { for (int j = 0; j < m; j++) { matrix[0][i][j] = sc.nextInt(); } } for (int i = 1; i < 34; i++) { for (int a = 0; a < m; a++) { for (int b = 0; b < m; b++) { for (int c = 0; c < m; c++) { matrix[i][a][c] = Math.max(matrix[i][a][c], matrix[i - 1][a][b] + matrix[i - 1][b][c]); } } } } long[] ans = new long[m]; for (int i = 33; i >= 0; i--) { if (n < (1L << i)) { continue; } n -= (1L << i); long[] next = new long[m]; for (int a = 0; a < m; a++) { for (int b = 0; b < m; b++) { next[b] = Math.max(next[b], ans[a] + matrix[i][a][b]); } } ans = next; } Arrays.sort(ans); System.out.println(ans[m - 1]); } } class Utilities { static String arrayToLineString(Object[] arr) { return Arrays.stream(arr).map(x -> x.toString()).collect(Collectors.joining("\n")); } static String arrayToLineString(int[] arr) { return String.join("\n", Arrays.stream(arr).mapToObj(String::valueOf).toArray(String[]::new)); } } class Scanner { BufferedReader br = new BufferedReader(new InputStreamReader(System.in)); StringTokenizer st = new StringTokenizer(""); StringBuilder sb = new StringBuilder(); 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 int[] nextIntArray() throws Exception { return Stream.of(br.readLine().split(" ")).mapToInt(Integer::parseInt).toArray(); } public String next() throws Exception { while (!st.hasMoreTokens()) { st = new StringTokenizer(br.readLine()); } return st.nextToken(); } }