結果
問題 | No.17 2つの地点に泊まりたい |
ユーザー | t8m8⛄️ |
提出日時 | 2015-04-04 01:48:19 |
言語 | Java21 (openjdk 21) |
結果 |
WA
(最新)
AC
(最初)
|
実行時間 | - |
コード長 | 2,237 bytes |
コンパイル時間 | 3,871 ms |
コンパイル使用メモリ | 78,532 KB |
実行使用メモリ | 57,644 KB |
最終ジャッジ日時 | 2024-07-04 01:40:40 |
合計ジャッジ時間 | 10,039 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 138 ms
54,052 KB |
testcase_01 | AC | 137 ms
53,880 KB |
testcase_02 | AC | 143 ms
54,388 KB |
testcase_03 | AC | 172 ms
54,088 KB |
testcase_04 | AC | 195 ms
54,236 KB |
testcase_05 | AC | 215 ms
56,688 KB |
testcase_06 | AC | 207 ms
56,616 KB |
testcase_07 | AC | 207 ms
56,632 KB |
testcase_08 | AC | 387 ms
57,644 KB |
testcase_09 | AC | 228 ms
57,164 KB |
testcase_10 | AC | 204 ms
54,188 KB |
testcase_11 | AC | 212 ms
56,716 KB |
testcase_12 | AC | 135 ms
53,816 KB |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | AC | 211 ms
56,688 KB |
testcase_24 | AC | 215 ms
56,656 KB |
testcase_25 | AC | 153 ms
53,896 KB |
testcase_26 | AC | 222 ms
56,556 KB |
ソースコード
// No.17 2つの地点に泊まりたい import java.util.*; import java.io.*; import static java.util.Arrays.*; import static java.lang.Math.*; public class No17 { static final Scanner sc = new Scanner(System.in); static final PrintWriter out = new PrintWriter(System.out,false); static void solve() { int n = sc.nextInt(); int[] a = new int[n]; for (int i=0; i<n; i++) a[i] = sc.nextInt(); int m = sc.nextInt(); int[][] g = new int[n][n]; for (int i=0; i<n; i++) fill(g[i],Integer.MAX_VALUE/2); for (int i=0; i<m; i++) { int s = sc.nextInt(); int t = sc.nextInt(); int c = sc.nextInt(); g[s][t] = c; g[t][s] = c; } int[][] d = warshallFloyd(g); int min = Integer.MAX_VALUE; for (int i=1; i<n-1; i++) { for (int j=i+1; j<n-1; j++) { min = min(min,min(a[i]+a[j]+d[0][i]+d[i][j]+d[j][n-1],a[i]+a[j]+d[0][j]+d[j][i]+d[i][n-1])); } } out.println(min); } static int[][] warshallFloyd(int[][] g) { int n = g.length; int[][] d = g.clone(); for (int k=0; k<n; k++) for (int i=0; i<n; i++) for (int j=0; j<n; j++) d[i][j] = min(d[i][j],d[i][k] + d[k][j]); return d; } static int[][][] toAdjacencyList(int n,int[] from, int[] to, int[] cost) { int[] cnt = new int[n]; for (int i : from) cnt[i]++; for (int i : to) cnt[i]++; int[][][] g = new int[n][][]; for (int i=0; i<n; i++) g[i] = new int[cnt[i]][2]; for (int i=0; i<from.length; i++) { int f = from[i]; int t = to[i]; g[f][--cnt[f]][0] = t; g[t][--cnt[t]][0] = f; g[f][cnt[f]][1] = g[t][cnt[t]][1] = cost[i]; } return g; } public static void main(String[] args) { long start = System.currentTimeMillis(); solve(); out.flush(); long end = System.currentTimeMillis(); //trace(end-start + "ms"); sc.close(); } static void trace(Object... o) { System.out.println(deepToString(o));} }