結果

問題 No.1473 おでぶなおばけさん
ユーザー 小野寺健小野寺健
提出日時 2021-04-26 10:33:26
言語 Java21
(openjdk 21)
結果
TLE  
実行時間 -
コード長 2,197 bytes
コンパイル時間 3,769 ms
コンパイル使用メモリ 83,232 KB
実行使用メモリ 92,952 KB
最終ジャッジ日時 2024-07-04 19:06:12
合計ジャッジ時間 21,351 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 155 ms
46,864 KB
testcase_01 AC 153 ms
41,112 KB
testcase_02 AC 1,901 ms
86,188 KB
testcase_03 AC 1,834 ms
76,824 KB
testcase_04 AC 1,214 ms
71,736 KB
testcase_05 AC 681 ms
50,836 KB
testcase_06 AC 1,833 ms
76,020 KB
testcase_07 TLE -
testcase_08 TLE -
testcase_09 TLE -
testcase_10 AC 1,194 ms
66,172 KB
testcase_11 AC 1,194 ms
65,752 KB
testcase_12 AC 1,419 ms
65,728 KB
testcase_13 AC 1,126 ms
63,300 KB
testcase_14 AC 933 ms
55,824 KB
testcase_15 AC 1,356 ms
65,472 KB
testcase_16 AC 1,217 ms
65,520 KB
testcase_17 AC 394 ms
48,564 KB
testcase_18 AC 497 ms
48,448 KB
testcase_19 AC 1,058 ms
63,368 KB
testcase_20 AC 1,489 ms
73,044 KB
testcase_21 AC 1,513 ms
66,164 KB
testcase_22 AC 1,533 ms
71,384 KB
testcase_23 AC 1,256 ms
70,420 KB
testcase_24 AC 1,367 ms
69,144 KB
testcase_25 AC 1,341 ms
70,584 KB
testcase_26 AC 1,648 ms
72,436 KB
testcase_27 AC 933 ms
55,148 KB
testcase_28 AC 1,659 ms
78,048 KB
testcase_29 AC 1,381 ms
68,580 KB
testcase_30 AC 1,593 ms
71,484 KB
testcase_31 AC 1,549 ms
76,392 KB
testcase_32 AC 1,584 ms
79,868 KB
testcase_33 AC 1,336 ms
72,332 KB
testcase_34 AC 868 ms
58,148 KB
testcase_35 AC 1,006 ms
58,776 KB
testcase_36 AC 1,242 ms
64,024 KB
testcase_37 AC 1,394 ms
69,388 KB
testcase_38 AC 595 ms
49,348 KB
testcase_39 AC 1,238 ms
65,736 KB
testcase_40 AC 1,285 ms
65,884 KB
testcase_41 AC 1,322 ms
65,412 KB
testcase_42 AC 1,341 ms
65,376 KB
testcase_43 AC 1,376 ms
77,272 KB
testcase_44 AC 1,339 ms
74,504 KB
testcase_45 AC 1,363 ms
76,644 KB
testcase_46 TLE -
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 {
		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();
		for (int i=0; i < n; i++) {
			V.get(i).sort((a,b)-> b.d - a.d);
		}
		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][2];
		List<Integer> fw = new ArrayList<Integer>();
		List<Integer> bw = new ArrayList<Integer>();
		fw.add(0);
		bw.add(n-1);
		int depth = 0;
		while (true) {
			List<Integer> newfw = new ArrayList<Integer>();
			for (int i : fw) {
				B[i][0] = true;
				for (Q n : V.get(i)) {
					if (n.d >= w ) {
						if (B[n.i][1]) {
							return depth;
						}
						if (!B[n.i][0]) {
							newfw.add(n.i);
						}
					} else {
						break;
					}
				}
			}
			if (newfw.isEmpty()) {
				depth = 0;
				break;
			}
			fw = newfw;
			depth++;
			List<Integer> newbw = new ArrayList<Integer>();
			for (int i : bw) {
				B[i][1] = true;
				for (Q n : V.get(i)) {
					if (n.d >= w ) {
						if (B[n.i][0]) {
							return depth;
						}
						if (!B[n.i][1]) {
							newbw.add(n.i);
						}
					} else {
						break;
					}
				}
			}
			if (newbw.isEmpty()) {
				depth = 0;
				break;
			}
			bw = newbw;
			depth++;
		}
		return depth;
	}

}
0