結果

問題 No.1473 おでぶなおばけさん
ユーザー 小野寺健小野寺健
提出日時 2021-04-26 12:17:33
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 2,119 bytes
コンパイル時間 3,477 ms
コンパイル使用メモリ 87,880 KB
実行使用メモリ 75,076 KB
最終ジャッジ日時 2024-07-04 21:03:40
合計ジャッジ時間 55,982 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 109 ms
45,376 KB
testcase_01 WA -
testcase_02 AC 1,540 ms
74,104 KB
testcase_03 AC 1,418 ms
72,144 KB
testcase_04 AC 1,188 ms
64,752 KB
testcase_05 AC 609 ms
52,724 KB
testcase_06 AC 1,521 ms
72,492 KB
testcase_07 AC 1,661 ms
75,076 KB
testcase_08 AC 1,674 ms
74,616 KB
testcase_09 AC 1,449 ms
74,756 KB
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 1,201 ms
65,544 KB
testcase_17 AC 373 ms
48,348 KB
testcase_18 AC 456 ms
48,820 KB
testcase_19 AC 1,002 ms
63,724 KB
testcase_20 AC 1,195 ms
70,504 KB
testcase_21 AC 1,352 ms
66,448 KB
testcase_22 AC 1,316 ms
71,672 KB
testcase_23 AC 1,140 ms
70,816 KB
testcase_24 AC 1,049 ms
70,884 KB
testcase_25 AC 1,251 ms
71,048 KB
testcase_26 AC 1,274 ms
70,848 KB
testcase_27 AC 708 ms
55,108 KB
testcase_28 AC 1,360 ms
73,996 KB
testcase_29 AC 1,179 ms
66,152 KB
testcase_30 AC 1,429 ms
70,264 KB
testcase_31 AC 1,447 ms
74,284 KB
testcase_32 AC 1,476 ms
72,452 KB
testcase_33 AC 1,255 ms
70,264 KB
testcase_34 AC 741 ms
56,796 KB
testcase_35 AC 876 ms
62,168 KB
testcase_36 AC 1,114 ms
65,508 KB
testcase_37 AC 975 ms
69,536 KB
testcase_38 AC 530 ms
49,344 KB
testcase_39 AC 1,206 ms
65,544 KB
testcase_40 AC 1,152 ms
65,864 KB
testcase_41 WA -
testcase_42 WA -
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 {
		int i;
		int d;
		public Q(int i, int d) {
			this.i = i;
			this.d = d;
		}
		public boolean equals(Object o) {
			if (o == this) return true;
			if (o.getClass() != this.getClass()) return false;
			Q q = (Q)o;
			return this.i == q.i;
		}
	}
	
	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();
			Q q = new Q(t, d);
			int j = V.get(s).indexOf(q);
			if (j < 0) {
				V.get(s).add(q);
			} else {
				V.get(s).get(j).d = d;
			}
			q = new Q(s, d);
			j = V.get(t).indexOf(q);
			if (j < 0) {
				V.get(t).add(q);
			} else {
				V.get(t).get(j).d = 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];
		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);
						}
					} else {
						break;
					}
				}
			}
			if (newfw.isEmpty()) {
				depth = 0;
				break;
			}
			fw = newfw;
			depth++;
		}
		return depth;
	}
}
0