結果

問題 No.1473 おでぶなおばけさん
ユーザー 小野寺健小野寺健
提出日時 2021-04-26 14:46:51
言語 Java21
(openjdk 21)
結果
TLE  
実行時間 -
コード長 1,602 bytes
コンパイル時間 4,272 ms
コンパイル使用メモリ 84,224 KB
実行使用メモリ 85,764 KB
最終ジャッジ日時 2024-07-04 23:42:03
合計ジャッジ時間 35,694 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 134 ms
46,736 KB
testcase_01 AC 134 ms
41,444 KB
testcase_02 TLE -
testcase_03 AC 1,599 ms
83,792 KB
testcase_04 AC 1,329 ms
75,988 KB
testcase_05 AC 737 ms
55,652 KB
testcase_06 AC 1,858 ms
83,752 KB
testcase_07 AC 1,777 ms
85,680 KB
testcase_08 AC 1,899 ms
85,764 KB
testcase_09 AC 1,823 ms
75,512 KB
testcase_10 AC 1,319 ms
66,804 KB
testcase_11 AC 1,231 ms
66,804 KB
testcase_12 AC 1,312 ms
66,456 KB
testcase_13 AC 1,120 ms
62,936 KB
testcase_14 AC 905 ms
61,684 KB
testcase_15 AC 1,249 ms
66,040 KB
testcase_16 AC 1,300 ms
66,004 KB
testcase_17 AC 389 ms
49,052 KB
testcase_18 AC 512 ms
48,820 KB
testcase_19 AC 1,261 ms
64,288 KB
testcase_20 AC 1,599 ms
71,336 KB
testcase_21 AC 1,545 ms
66,348 KB
testcase_22 TLE -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
testcase_31 -- -
testcase_32 -- -
testcase_33 -- -
testcase_34 -- -
testcase_35 -- -
testcase_36 -- -
testcase_37 -- -
testcase_38 -- -
testcase_39 -- -
testcase_40 -- -
testcase_41 -- -
testcase_42 -- -
testcase_43 -- -
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;
import java.util.Arrays;

public class No1473_3 {
	
	private static class Q {
		int i;
		int d;
		public Q(int i, int d) {
			this.i = i;
			this.d = d;
		}
	}
	
	private static int n;
	private static List<List<Q>> V;
	
	public static void main(String[] args) {
		Scanner scan = new Scanner(System.in);
		n = scan.nextInt();
		int m = scan.nextInt();
		V = new ArrayList<List<Q>>();
		for (int i = 0; i < n; i++) {
			V.add(new ArrayList<Q>());
		}
		int[] w = new int[m+2];
		int max = 0;
		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 Q(t, d));
			V.get(t).add(new Q(s, d));			
			w[i+1] = d;
			max = Math.max(max, d);
		}
		w[m+1] = max;
		Arrays.sort(w);
		scan.close();
		for (int i=0; i < n; i++) {
			V.get(i).sort((a,b) -> b.d - a.d);
		}
		Q l = new Q(0, 0), r = new Q(m+1, 0);
		while (r.i - l.i > 1) {
			int mid = (r.i + l.i) / 2;
			int c = bfs(w[mid]);
			if (c < 0) {
				r.i = mid;
				r.d = 0;
			} else {
				l.i = mid;
				l.d = c;
			}
		}
		System.out.println(String.format("%d %d", w[l.i],l.d));
	}
	private static int bfs(int w) {
		int[] dist = new int[n];
		Arrays.fill(dist, -1);
		List<Integer> que = new ArrayList<Integer>();
		dist[0] = 0;
		que.add(0);
		while (!que.isEmpty()) {
			int v = que.remove(0);
			for (Q nv : V.get(v)) {
				if (nv.d >= w) {
					if (dist[nv.i] < 0) {
						dist[nv.i] = dist[v] + 1;
						que.add(nv.i);
					}
				}
			}
		}
		return dist[n-1];
	}
}
0