結果

問題 No.1473 おでぶなおばけさん
ユーザー 小野寺健小野寺健
提出日時 2021-04-26 14:57:16
言語 Java21
(openjdk 21)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 1,739 bytes
コンパイル時間 3,973 ms
コンパイル使用メモリ 87,860 KB
実行使用メモリ 85,396 KB
最終ジャッジ日時 2024-07-04 23:54:14
合計ジャッジ時間 70,628 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 137 ms
41,216 KB
testcase_01 AC 134 ms
41,784 KB
testcase_02 TLE -
testcase_03 AC 1,611 ms
72,540 KB
testcase_04 AC 1,078 ms
65,116 KB
testcase_05 AC 714 ms
54,356 KB
testcase_06 AC 1,809 ms
72,888 KB
testcase_07 AC 1,899 ms
75,624 KB
testcase_08 TLE -
testcase_09 AC 1,808 ms
75,476 KB
testcase_10 AC 1,236 ms
66,828 KB
testcase_11 AC 1,345 ms
66,612 KB
testcase_12 AC 1,240 ms
66,420 KB
testcase_13 AC 1,002 ms
62,976 KB
testcase_14 AC 862 ms
57,668 KB
testcase_15 AC 1,241 ms
65,728 KB
testcase_16 AC 1,200 ms
65,288 KB
testcase_17 AC 365 ms
48,476 KB
testcase_18 AC 498 ms
49,132 KB
testcase_19 AC 1,218 ms
63,808 KB
testcase_20 AC 1,562 ms
71,060 KB
testcase_21 AC 1,718 ms
66,204 KB
testcase_22 TLE -
testcase_23 AC 1,773 ms
71,612 KB
testcase_24 TLE -
testcase_25 AC 1,849 ms
72,220 KB
testcase_26 AC 1,499 ms
71,624 KB
testcase_27 AC 807 ms
57,448 KB
testcase_28 AC 1,676 ms
75,056 KB
testcase_29 AC 1,386 ms
66,552 KB
testcase_30 AC 1,518 ms
70,120 KB
testcase_31 AC 1,596 ms
74,828 KB
testcase_32 AC 1,656 ms
72,924 KB
testcase_33 AC 1,341 ms
70,528 KB
testcase_34 AC 853 ms
57,156 KB
testcase_35 AC 922 ms
62,160 KB
testcase_36 AC 1,709 ms
64,824 KB
testcase_37 AC 1,352 ms
70,956 KB
testcase_38 AC 553 ms
49,640 KB
testcase_39 AC 1,128 ms
66,284 KB
testcase_40 AC 1,213 ms
66,244 KB
testcase_41 AC 1,192 ms
65,892 KB
testcase_42 AC 1,265 ms
66,060 KB
testcase_43 AC 1,189 ms
71,748 KB
testcase_44 AC 1,241 ms
72,296 KB
testcase_45 AC 1,253 ms
72,352 KB
testcase_46 AC 1,226 ms
69,636 KB
testcase_47 AC 1,428 ms
71,888 KB
testcase_48 AC 1,341 ms
71,528 KB
権限があれば一括ダウンロードができます

ソースコード

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;
		int min = 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 Q(t, d));
			V.get(t).add(new Q(s, d));			
			w[i+1] = d;
			max = Math.max(max, d);
			min = Math.min(min, d);
		}
		w[0] = min-1;
		w[m+1] = max+1;
		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;
						if (nv.i == n - 1) {
							return dist[nv.i];
						}
						que.add(nv.i);
					}
				}
			}
		}
		return dist[n-1];
	}
}
0