結果

問題 No.17 2つの地点に泊まりたい
ユーザー 37zigen37zigen
提出日時 2016-03-07 22:10:35
言語 Java21
(openjdk 21)
結果
AC  
実行時間 231 ms / 5,000 ms
コード長 2,087 bytes
コンパイル時間 2,179 ms
コンパイル使用メモリ 77,728 KB
実行使用メモリ 45,552 KB
最終ジャッジ日時 2024-10-15 01:31:47
合計ジャッジ時間 7,917 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 137 ms
41,232 KB
testcase_01 AC 134 ms
41,168 KB
testcase_02 AC 143 ms
41,640 KB
testcase_03 AC 165 ms
42,144 KB
testcase_04 AC 192 ms
42,092 KB
testcase_05 AC 217 ms
44,392 KB
testcase_06 AC 208 ms
43,088 KB
testcase_07 AC 207 ms
43,152 KB
testcase_08 AC 231 ms
45,540 KB
testcase_09 AC 229 ms
45,552 KB
testcase_10 AC 205 ms
42,544 KB
testcase_11 AC 203 ms
42,932 KB
testcase_12 AC 136 ms
41,432 KB
testcase_13 AC 137 ms
41,192 KB
testcase_14 AC 141 ms
41,216 KB
testcase_15 AC 137 ms
41,344 KB
testcase_16 AC 138 ms
41,344 KB
testcase_17 AC 146 ms
41,568 KB
testcase_18 AC 175 ms
41,660 KB
testcase_19 AC 153 ms
41,564 KB
testcase_20 AC 147 ms
41,528 KB
testcase_21 AC 141 ms
41,432 KB
testcase_22 AC 163 ms
41,652 KB
testcase_23 AC 217 ms
43,952 KB
testcase_24 AC 215 ms
43,392 KB
testcase_25 AC 152 ms
41,400 KB
testcase_26 AC 220 ms
44,412 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.PrintWriter;
import java.util.Scanner;

public class Main {

	public static void a(String[] args) {
		try (Scanner scan = new Scanner(System.in)) {
			int N = scan.nextInt();
			int stayCost[] = new int[N];
			for(int i=0; i<N; i++) {
				stayCost[i] = scan.nextInt();
			}
			int M = scan.nextInt();
			int moveCost[][] = new int[N][N];
			for(int i=0; i<N; i++) {
				for(int j=0; j<N; j++) {
					moveCost[i][j] = 1000000;
				}
			}

			for(int i=0; i<M; i++) {
				int from = scan.nextInt();
				int to = scan.nextInt();
				int cost = scan.nextInt();
				moveCost[from][to] = cost;
				moveCost[to][from] = cost;
			}

			for(int k = 0; k < N; ++k) {
				for(int i = 0; i < N; ++i) {
					for(int j = 0; j < N; ++j) {
						moveCost[i][j] = Math.min(moveCost[i][j], moveCost[i][k] + moveCost[k][j]);
					}
				}
			}

			int ans = Integer.MAX_VALUE;
			for(int i=1; i<N-1; i++) {
				for(int j=1; j<N-1; j++) {
					if(i==j) continue;
					int tmp = moveCost[i][0] + moveCost[j][i] + moveCost[N-1][j] + stayCost[i] + stayCost[j];
					ans = Math.min(ans, tmp);
				}
			}

			System.out.println(ans);
		}
	}


	public static void main(String[] args) throws Exception {
		PrintWriter pw=new PrintWriter(System.out);
		Scanner sc=new Scanner(System.in);

		int n=sc.nextInt();
		int[] stcst=new int[n];

		for(int i=0;i<n;i++){
			stcst[i]=sc.nextInt();
		}
		int m=sc.nextInt();
		int[][] mvcst=new int[n][n];
		for(int i=0;i<n;i++){
			for(int j=0;j<n;j++){
				mvcst[i][j]=1000000;
			}
		}
		
		for(int i=0;i<m;i++){
			int from=sc.nextInt();
			int to=sc.nextInt();
			int cst=sc.nextInt();
			mvcst[from][to]=cst;
			mvcst[to][from]=cst;
		}
		for(int k=0;k<n;k++){
			for(int j=0;j<n;j++){
				for(int i=0;i<n;i++){
					mvcst[i][j]=Math.min(mvcst[i][j], mvcst[i][k]+mvcst[k][j]);
				}
			}
		}

		int ans=Integer.MAX_VALUE;
		for(int i=1;i<n-1;i++){
			for(int j=1;j<n-1;j++){
				if(i==j)continue;
				int tmp=mvcst[i][0]+mvcst[i][j]+mvcst[n-1][j]+stcst[i]+stcst[j];
				ans=Math.min(tmp, ans);
			}
		}
		pw.println(ans);
		pw.close();
		sc.close();
	} 

}
0