結果

問題 No.1473 おでぶなおばけさん
ユーザー 小野寺健小野寺健
提出日時 2021-04-26 11:41:38
言語 Java21
(openjdk 21)
結果
TLE  
実行時間 -
コード長 1,683 bytes
コンパイル時間 3,494 ms
コンパイル使用メモリ 80,632 KB
実行使用メモリ 168,900 KB
最終ジャッジ日時 2024-07-04 20:14:08
合計ジャッジ時間 57,726 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 124 ms
45,588 KB
testcase_01 AC 125 ms
40,984 KB
testcase_02 AC 1,542 ms
74,484 KB
testcase_03 AC 1,402 ms
71,772 KB
testcase_04 AC 1,219 ms
65,296 KB
testcase_05 AC 690 ms
51,012 KB
testcase_06 AC 1,539 ms
72,324 KB
testcase_07 AC 1,606 ms
73,996 KB
testcase_08 AC 1,639 ms
74,432 KB
testcase_09 AC 1,589 ms
74,636 KB
testcase_10 AC 948 ms
65,776 KB
testcase_11 AC 1,098 ms
65,852 KB
testcase_12 AC 1,019 ms
64,988 KB
testcase_13 AC 786 ms
59,524 KB
testcase_14 AC 601 ms
53,660 KB
testcase_15 AC 964 ms
65,068 KB
testcase_16 AC 1,014 ms
64,728 KB
testcase_17 AC 355 ms
48,112 KB
testcase_18 AC 461 ms
48,664 KB
testcase_19 AC 1,029 ms
63,612 KB
testcase_20 AC 1,240 ms
70,520 KB
testcase_21 AC 1,308 ms
65,476 KB
testcase_22 AC 1,262 ms
70,752 KB
testcase_23 AC 1,155 ms
70,604 KB
testcase_24 AC 1,109 ms
68,660 KB
testcase_25 AC 1,292 ms
70,892 KB
testcase_26 AC 1,352 ms
69,904 KB
testcase_27 AC 755 ms
53,208 KB
testcase_28 AC 1,378 ms
74,104 KB
testcase_29 AC 1,195 ms
65,584 KB
testcase_30 AC 1,321 ms
70,008 KB
testcase_31 AC 1,345 ms
73,972 KB
testcase_32 AC 1,480 ms
72,508 KB
testcase_33 AC 1,159 ms
69,864 KB
testcase_34 AC 757 ms
56,480 KB
testcase_35 AC 889 ms
62,560 KB
testcase_36 AC 1,112 ms
64,940 KB
testcase_37 AC 1,153 ms
69,484 KB
testcase_38 AC 537 ms
49,592 KB
testcase_39 AC 986 ms
65,296 KB
testcase_40 AC 1,039 ms
65,196 KB
testcase_41 AC 940 ms
64,264 KB
testcase_42 AC 953 ms
65,304 KB
testcase_43 AC 1,133 ms
72,080 KB
testcase_44 AC 1,164 ms
72,044 KB
testcase_45 AC 1,174 ms
72,084 KB
testcase_46 TLE -
testcase_47 -- -
testcase_48 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

package yukicoder;

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

public class No1473_2 {
	
	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_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 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(min_d - 1, 0), r = new Q(max_d + 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) {
		boolean[]B = new boolean[n];
		List<Integer> fw = new ArrayList<Integer>();
		fw.add(0);
		int depth = 1;
		while (true) {
			List<Integer> newfw = new ArrayList<Integer>();
			for (int i : fw) {
				B[i] = true;
				for (Q q : V.get(i)) {
					if (q.d >= w) {
						if (q.i == n - 1) {
							return depth;
						}
						if (!B[q.i]) {
							newfw.add(q.i);
						}
					}
				}
			}
			if (newfw.isEmpty()) {
				depth = 0;
				break;
			}
			fw = newfw;
			depth++;
		}
		return depth;
	}
}
0