結果

問題 No.1473 おでぶなおばけさん
ユーザー 小野寺健小野寺健
提出日時 2021-04-26 09:05:28
言語 Java21
(openjdk 21)
結果
TLE  
実行時間 -
コード長 1,500 bytes
コンパイル時間 4,410 ms
コンパイル使用メモリ 79,044 KB
実行使用メモリ 431,332 KB
最終ジャッジ日時 2024-07-04 17:45:25
合計ジャッジ時間 71,923 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 135 ms
46,516 KB
testcase_01 AC 136 ms
41,352 KB
testcase_02 TLE -
testcase_03 AC 1,741 ms
80,868 KB
testcase_04 AC 1,483 ms
70,988 KB
testcase_05 AC 1,098 ms
61,900 KB
testcase_06 TLE -
testcase_07 TLE -
testcase_08 TLE -
testcase_09 AC 1,967 ms
85,832 KB
testcase_10 AC 1,307 ms
72,160 KB
testcase_11 AC 1,545 ms
73,784 KB
testcase_12 AC 1,316 ms
73,656 KB
testcase_13 AC 1,032 ms
64,440 KB
testcase_14 AC 849 ms
58,088 KB
testcase_15 AC 1,244 ms
69,568 KB
testcase_16 AC 1,315 ms
73,484 KB
testcase_17 AC 387 ms
48,124 KB
testcase_18 AC 486 ms
49,200 KB
testcase_19 AC 1,413 ms
70,872 KB
testcase_20 AC 1,434 ms
75,652 KB
testcase_21 TLE -
testcase_22 AC 1,579 ms
75,228 KB
testcase_23 AC 1,309 ms
72,664 KB
testcase_24 AC 1,479 ms
72,656 KB
testcase_25 AC 1,505 ms
76,516 KB
testcase_26 AC 1,499 ms
79,004 KB
testcase_27 AC 1,006 ms
63,816 KB
testcase_28 AC 1,507 ms
85,156 KB
testcase_29 AC 1,459 ms
74,284 KB
testcase_30 AC 1,636 ms
76,584 KB
testcase_31 AC 1,964 ms
97,448 KB
testcase_32 AC 1,829 ms
83,476 KB
testcase_33 AC 1,385 ms
75,060 KB
testcase_34 AC 915 ms
60,788 KB
testcase_35 AC 1,264 ms
66,136 KB
testcase_36 TLE -
testcase_37 AC 1,217 ms
73,864 KB
testcase_38 AC 530 ms
50,388 KB
testcase_39 AC 1,346 ms
74,596 KB
testcase_40 AC 1,331 ms
73,076 KB
testcase_41 AC 1,153 ms
70,624 KB
testcase_42 AC 1,161 ms
69,648 KB
testcase_43 TLE -
testcase_44 -- -
testcase_45 -- -
testcase_46 -- -
testcase_47 -- -
testcase_48 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

package yukicoder;

import java.util.Scanner;
import java.util.List;
import java.util.ArrayList;

public class No1473_2 {
	
	private static int n;
	private static List<List<Integer[]>> V;

	public static void main(String[] args) {
		Scanner scan = new Scanner(System.in);
		n = scan.nextInt();
		int m = scan.nextInt();
		V = new ArrayList<List<Integer[]>>();
		for (int i = 0; i < n; i++) {
			V.add(new ArrayList<Integer[]>());
		}
		int max_d = 0;
		int min_d = Integer.MAX_VALUE;
		for (int i=0; i < m; i++) {
			int s = scan.nextInt() - 1;
			int t = scan.nextInt() - 1;
			int d = scan.nextInt();
			V.get(s).add(new Integer[] {t, d});
			V.get(t).add(new Integer[] {s, d});
			max_d = Math.max(max_d,  d);
			min_d = Math.min(min_d,  d);
		}
		scan.close();
		int[] l = new int[] {min_d - 1, 0}, r = new int[] {max_d + 1, 0};
		while (r[0] - l[0] > 1) {
			int mid = (r[0] + l[0]) / 2;
			int c = bfs(mid);
			if (c == 0) {
				r[0] = mid;
				r[1] = 0;
			} else {
				l[0] = mid;
				l[1] = c;
			}
		}
		System.out.println(String.format("%d %d", l[0],l[1]));
	}
	
	private static int bfs(int w) {
		boolean[] B = new boolean[n];
		List<Integer[]> q = new ArrayList<Integer[]>();
		q.add(new Integer[] {0, 0});
		B[0] = true;
		while (q.size() > 0) {
			Integer[] v = q.remove(0);
			if (v[0] == n-1) {
				return v[1];
			}
			B[v[0]] = true;
			for (Integer[] i : V.get(v[0])) {
				if (i[1] >= w && !B[i[0]]) {
					q.add(new Integer[] {i[0], v[1] + 1});
				}
			}
		}
		return 0;
	}

}
0