結果

問題 No.1473 おでぶなおばけさん
ユーザー 小野寺健小野寺健
提出日時 2021-04-26 08:53:50
言語 Java21
(openjdk 21)
結果
TLE  
実行時間 -
コード長 1,552 bytes
コンパイル時間 4,324 ms
コンパイル使用メモリ 78,724 KB
実行使用メモリ 85,816 KB
最終ジャッジ日時 2024-07-04 17:32:24
合計ジャッジ時間 62,796 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 109 ms
39,964 KB
testcase_01 AC 129 ms
41,200 KB
testcase_02 AC 1,963 ms
74,236 KB
testcase_03 AC 1,429 ms
72,296 KB
testcase_04 AC 1,279 ms
64,816 KB
testcase_05 AC 795 ms
53,232 KB
testcase_06 AC 1,646 ms
72,376 KB
testcase_07 AC 1,624 ms
74,908 KB
testcase_08 AC 1,923 ms
85,816 KB
testcase_09 AC 1,675 ms
74,804 KB
testcase_10 AC 1,069 ms
66,004 KB
testcase_11 AC 1,241 ms
66,780 KB
testcase_12 AC 1,110 ms
66,328 KB
testcase_13 AC 930 ms
63,144 KB
testcase_14 AC 733 ms
56,532 KB
testcase_15 AC 1,022 ms
65,552 KB
testcase_16 AC 1,094 ms
65,908 KB
testcase_17 AC 348 ms
48,308 KB
testcase_18 AC 463 ms
48,916 KB
testcase_19 AC 1,115 ms
63,848 KB
testcase_20 AC 1,272 ms
70,332 KB
testcase_21 AC 1,995 ms
69,272 KB
testcase_22 AC 1,361 ms
72,496 KB
testcase_23 AC 1,124 ms
70,452 KB
testcase_24 AC 1,407 ms
71,212 KB
testcase_25 AC 1,392 ms
72,168 KB
testcase_26 AC 1,297 ms
72,144 KB
testcase_27 AC 851 ms
60,712 KB
testcase_28 AC 1,355 ms
74,196 KB
testcase_29 AC 1,176 ms
65,964 KB
testcase_30 AC 1,392 ms
70,380 KB
testcase_31 AC 1,637 ms
74,460 KB
testcase_32 AC 1,505 ms
72,580 KB
testcase_33 AC 1,290 ms
70,080 KB
testcase_34 AC 754 ms
57,204 KB
testcase_35 AC 1,050 ms
62,824 KB
testcase_36 AC 1,924 ms
78,580 KB
testcase_37 AC 995 ms
69,072 KB
testcase_38 AC 498 ms
49,384 KB
testcase_39 AC 1,080 ms
65,976 KB
testcase_40 AC 1,077 ms
65,432 KB
testcase_41 AC 959 ms
65,392 KB
testcase_42 AC 930 ms
66,500 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 class Q {
		public int i;
		public long d;
		public Q(int i, long 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>());
		}
		long max_d = 0;
		long min_d = Long.MAX_VALUE;
		for (int i=0; i < m; i++) {
			int s = scan.nextInt() - 1;
			int t = scan.nextInt() - 1;
			long d = scan.nextLong();
			V.get(s).add(new Q(t, d));
			V.get(t).add(new Q(s, d));
			max_d = Math.max(max_d,  d);
			min_d = Math.min(min_d,  d);
		}
		scan.close();
		Q l = new Q(0, min_d - 1), r = new Q(0, max_d + 1);
		while (r.d - l.d > 1) {
			long mid = (r.d + l.d) / 2;
			int c = bfs(mid);
			if (c == 0) {
				r.d = mid;
				r.i = 0;
			} else {
				l.d = mid;
				l.i = c;
			}
		}
		System.out.println(String.format("%d %d", l.d,l.i));
	}
	
	private static int bfs(long 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 (Q i : V.get(v[0])) {
				if (i.d >= w && !B[i.i]) {
					q.add(new Integer[] {i.i, v[1] + 1});
				}
			}
		}
		return 0;
	}

}
0