結果

問題 No.1473 おでぶなおばけさん
ユーザー 小野寺健小野寺健
提出日時 2021-04-26 15:01:26
言語 Java21
(openjdk 21)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 1,646 bytes
コンパイル時間 4,999 ms
コンパイル使用メモリ 80,948 KB
実行使用メモリ 74,864 KB
最終ジャッジ日時 2024-07-04 23:58:30
合計ジャッジ時間 69,822 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 124 ms
40,244 KB
testcase_01 AC 137 ms
41,260 KB
testcase_02 TLE -
testcase_03 AC 1,709 ms
71,896 KB
testcase_04 AC 1,527 ms
63,608 KB
testcase_05 AC 841 ms
56,340 KB
testcase_06 TLE -
testcase_07 TLE -
testcase_08 TLE -
testcase_09 AC 1,827 ms
74,572 KB
testcase_10 AC 1,301 ms
66,060 KB
testcase_11 AC 1,346 ms
63,844 KB
testcase_12 AC 1,243 ms
65,456 KB
testcase_13 AC 910 ms
62,208 KB
testcase_14 AC 842 ms
56,740 KB
testcase_15 AC 1,243 ms
65,392 KB
testcase_16 AC 1,247 ms
64,988 KB
testcase_17 AC 397 ms
48,044 KB
testcase_18 AC 523 ms
48,836 KB
testcase_19 AC 1,161 ms
63,108 KB
testcase_20 AC 1,472 ms
70,452 KB
testcase_21 AC 1,530 ms
65,508 KB
testcase_22 AC 1,467 ms
71,280 KB
testcase_23 AC 1,308 ms
70,556 KB
testcase_24 AC 1,392 ms
68,212 KB
testcase_25 AC 1,445 ms
70,688 KB
testcase_26 AC 1,372 ms
69,996 KB
testcase_27 AC 852 ms
54,752 KB
testcase_28 AC 1,576 ms
74,148 KB
testcase_29 AC 1,357 ms
65,772 KB
testcase_30 AC 1,619 ms
70,088 KB
testcase_31 AC 1,770 ms
73,268 KB
testcase_32 AC 1,739 ms
72,328 KB
testcase_33 AC 1,399 ms
69,920 KB
testcase_34 AC 872 ms
56,536 KB
testcase_35 AC 1,006 ms
61,936 KB
testcase_36 AC 1,221 ms
63,240 KB
testcase_37 AC 1,251 ms
69,384 KB
testcase_38 AC 544 ms
49,256 KB
testcase_39 AC 1,219 ms
65,344 KB
testcase_40 AC 1,335 ms
65,232 KB
testcase_41 AC 1,239 ms
65,280 KB
testcase_42 AC 1,261 ms
65,236 KB
testcase_43 AC 1,213 ms
71,428 KB
testcase_44 AC 1,305 ms
71,592 KB
testcase_45 AC 1,205 ms
71,496 KB
testcase_46 AC 1,357 ms
68,436 KB
testcase_47 AC 1,470 ms
71,368 KB
testcase_48 AC 1,667 ms
70,800 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 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));			
			max = Math.max(max, d);
			min = Math.min(min, d);
		}
		scan.close();
		for (int i=0; i < n; i++) {
			V.get(i).sort((a,b) -> b.d - a.d);
		}
		Q l = new Q(min-1, 0), r = new Q(max+1, 0);
		while (r.i - l.i > 1) {
			int mid = (r.i + l.i) / 2;
			int c = bfs(mid);
			if (c < 0) {
				r.i = mid;
				r.d = 0;
			} else {
				l.i = mid;
				l.d = c;
			}
		}
		System.out.println(String.format("%d %d", 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