結果
問題 | No.859 路線A、路線B、路線C |
ユーザー | htensai |
提出日時 | 2020-05-08 15:22:08 |
言語 | Java21 (openjdk 21) |
結果 |
AC
|
実行時間 | 135 ms / 1,000 ms |
コード長 | 1,566 bytes |
コンパイル時間 | 2,121 ms |
コンパイル使用メモリ | 77,252 KB |
実行使用メモリ | 41,608 KB |
最終ジャッジ日時 | 2024-07-03 09:51:56 |
合計ジャッジ時間 | 4,907 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 129 ms
41,148 KB |
testcase_01 | AC | 131 ms
41,152 KB |
testcase_02 | AC | 132 ms
41,352 KB |
testcase_03 | AC | 131 ms
41,388 KB |
testcase_04 | AC | 132 ms
41,608 KB |
testcase_05 | AC | 131 ms
41,228 KB |
testcase_06 | AC | 132 ms
41,164 KB |
testcase_07 | AC | 131 ms
41,476 KB |
testcase_08 | AC | 133 ms
41,072 KB |
testcase_09 | AC | 133 ms
41,300 KB |
testcase_10 | AC | 131 ms
41,460 KB |
testcase_11 | AC | 133 ms
41,480 KB |
testcase_12 | AC | 133 ms
41,284 KB |
testcase_13 | AC | 131 ms
41,156 KB |
testcase_14 | AC | 135 ms
41,268 KB |
ソースコード
import java.util.*; public class Main { public static void main (String[] args) { Scanner sc = new Scanner(System.in); int x = sc.nextInt(); int y = sc.nextInt(); int z = sc.nextInt(); long[][] costs = new long[8][8]; for (int i = 0; i < 8; i++) { Arrays.fill(costs[i], Long.MAX_VALUE / 10); costs[i][i] = 0; } costs[0][1] = x - 1; costs[0][2] = 1; costs[0][4] = 1; costs[2][4] = 1; costs[1][3] = 1; costs[1][5] = 1; costs[3][5] = 1; costs[2][3] = y - 1; costs[4][5] = z - 1; char sType = sc.next().charAt(0); int sIdx = sc.nextInt(); if (sType == 'A') { costs[6][0] = sIdx - 1; costs[6][1] = x - sIdx; } else if (sType == 'B') { costs[6][2] = sIdx - 1; costs[6][3] = y - sIdx; } else { costs[6][4] = sIdx - 1; costs[6][5] = z - sIdx; } char tType = sc.next().charAt(0); int tIdx = sc.nextInt(); if (tType == 'A') { costs[7][0] = tIdx - 1; costs[7][1] = x - tIdx; } else if (tType == 'B') { costs[7][2] = tIdx - 1; costs[7][3] = y - tIdx; } else { costs[7][4] = tIdx - 1; costs[7][5] = z - tIdx; } if (sType == tType) { costs[6][7] = Math.abs(sIdx - tIdx); } for (int i = 0; i < 8; i++) { for (int j = 0; j < 8; j++) { for (int k = 0; k < 8; k++) { costs[j][k] = Math.min(costs[j][k], costs[j][i] + costs[i][k]); costs[j][k] = Math.min(costs[j][k], costs[k][j]); costs[k][j] = costs[j][k]; } } } System.out.println(costs[6][7]); } }