結果

問題 No.17 2つの地点に泊まりたい
ユーザー chiho_miyakochiho_miyako
提出日時 2015-04-30 18:24:35
言語 Java21
(openjdk 21)
結果
AC  
実行時間 233 ms / 5,000 ms
コード長 1,235 bytes
コンパイル時間 2,149 ms
コンパイル使用メモリ 77,044 KB
実行使用メモリ 45,996 KB
最終ジャッジ日時 2024-10-15 01:20:39
合計ジャッジ時間 7,793 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 132 ms
41,516 KB
testcase_01 AC 135 ms
41,632 KB
testcase_02 AC 139 ms
41,196 KB
testcase_03 AC 167 ms
41,376 KB
testcase_04 AC 177 ms
42,348 KB
testcase_05 AC 222 ms
44,496 KB
testcase_06 AC 204 ms
43,008 KB
testcase_07 AC 201 ms
42,580 KB
testcase_08 AC 222 ms
45,444 KB
testcase_09 AC 233 ms
45,996 KB
testcase_10 AC 213 ms
42,776 KB
testcase_11 AC 215 ms
43,572 KB
testcase_12 AC 132 ms
41,108 KB
testcase_13 AC 130 ms
41,060 KB
testcase_14 AC 132 ms
41,172 KB
testcase_15 AC 133 ms
41,180 KB
testcase_16 AC 140 ms
41,056 KB
testcase_17 AC 142 ms
41,484 KB
testcase_18 AC 157 ms
41,340 KB
testcase_19 AC 150 ms
41,396 KB
testcase_20 AC 140 ms
41,688 KB
testcase_21 AC 136 ms
41,220 KB
testcase_22 AC 167 ms
41,472 KB
testcase_23 AC 218 ms
43,836 KB
testcase_24 AC 214 ms
43,456 KB
testcase_25 AC 148 ms
41,340 KB
testcase_26 AC 225 ms
44,252 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

class Ideone{
	public static void main (String[] args) throws java.lang.Exception{
		Scanner koko = new Scanner(System.in);
		int n = koko.nextInt();
		int[] s = new int[n];
		for(int i=0; i<n; i++){
			s[i]=koko.nextInt();
		}
		int m = koko.nextInt();
		int[] a = new int[m];
		int[] b = new int[m];
		int[] c = new int[m];
		int[][] d = new int[n][n];
		boolean[][] ju = new boolean[n][n];
		for(int i=0; i<m; i++){
			a[i]=koko.nextInt();
			b[i]=koko.nextInt();
			c[i]=koko.nextInt();
			d[a[i]][b[i]]=c[i];
			d[b[i]][a[i]]=c[i];
			ju[a[i]][b[i]]=true;
			ju[b[i]][a[i]]=true;
		}
		for(int i=0; i<n; i++){
			for(int j=0; j<n; j++){
				for(int k=0; k<n; k++){
					if(!ju[j][k]&&ju[j][i]&&ju[i][k]){
						d[j][k]=d[j][i]+d[i][k];
						ju[j][k]=true;
					}else if(ju[j][k]&&ju[j][i]&&ju[i][k]){
						d[j][k]=Math.min(d[j][k], d[j][i]+d[i][k]);
					}
				}
			}
		}
		int min = 1127000;
		for(int i=1; i<n-1; i++){
			for(int j=i+1; j<n-1; j++){
				if(ju[0][i]&&ju[i][j]&&ju[j][n-1]){
					min=Math.min(min, s[i]+s[j]+d[0][i]+d[i][j]+d[j][n-1]);
				}
				if(ju[0][j]&&ju[j][i]&&ju[i][n-1]){
					min=Math.min(min, s[i]+s[j]+d[0][j]+d[j][i]+d[i][n-1]);
				}
			}
		}
		System.out.println(min);
	}
}
0