結果

問題 No.1473 おでぶなおばけさん
ユーザー 小野寺健小野寺健
提出日時 2021-04-26 09:12:29
言語 Java21
(openjdk 21)
結果
TLE  
実行時間 -
コード長 1,487 bytes
コンパイル時間 3,209 ms
コンパイル使用メモリ 78,608 KB
実行使用メモリ 454,580 KB
最終ジャッジ日時 2024-07-04 17:52:24
合計ジャッジ時間 55,608 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 125 ms
46,404 KB
testcase_01 AC 122 ms
41,276 KB
testcase_02 AC 1,780 ms
85,536 KB
testcase_03 AC 1,309 ms
71,832 KB
testcase_04 AC 1,218 ms
65,172 KB
testcase_05 AC 750 ms
54,716 KB
testcase_06 AC 1,682 ms
83,912 KB
testcase_07 AC 1,460 ms
85,664 KB
testcase_08 AC 1,757 ms
85,572 KB
testcase_09 AC 1,470 ms
74,752 KB
testcase_10 AC 1,003 ms
65,768 KB
testcase_11 AC 1,127 ms
65,968 KB
testcase_12 AC 1,004 ms
66,084 KB
testcase_13 AC 809 ms
62,564 KB
testcase_14 AC 682 ms
56,040 KB
testcase_15 AC 998 ms
65,152 KB
testcase_16 AC 1,032 ms
65,264 KB
testcase_17 AC 335 ms
48,316 KB
testcase_18 AC 389 ms
49,008 KB
testcase_19 AC 1,063 ms
63,324 KB
testcase_20 AC 1,189 ms
70,232 KB
testcase_21 AC 1,783 ms
77,608 KB
testcase_22 AC 1,335 ms
72,300 KB
testcase_23 AC 1,056 ms
70,244 KB
testcase_24 AC 1,274 ms
69,656 KB
testcase_25 AC 1,307 ms
71,728 KB
testcase_26 AC 1,199 ms
70,696 KB
testcase_27 AC 763 ms
60,528 KB
testcase_28 AC 1,294 ms
73,984 KB
testcase_29 AC 1,276 ms
65,800 KB
testcase_30 AC 1,361 ms
70,412 KB
testcase_31 AC 1,557 ms
73,192 KB
testcase_32 AC 1,406 ms
72,356 KB
testcase_33 AC 1,242 ms
68,832 KB
testcase_34 AC 808 ms
57,872 KB
testcase_35 AC 1,007 ms
62,636 KB
testcase_36 AC 1,773 ms
77,596 KB
testcase_37 AC 1,065 ms
69,348 KB
testcase_38 AC 472 ms
49,296 KB
testcase_39 AC 1,012 ms
65,288 KB
testcase_40 AC 1,031 ms
65,920 KB
testcase_41 AC 935 ms
65,284 KB
testcase_42 AC 993 ms
64,548 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 {
		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<Q> q = new ArrayList<Q>();
		q.add(new Q(0, 0));
		B[0] = true;
		while (q.size() > 0) {
			Q v = q.remove(0);
			if (v.i == n-1) {
				return v.d;
			}
			B[v.i] = true;
			for (Q i : V.get(v.i)) {
				if (i.d >= w && !B[i.i]) {
					q.add(new Q (i.i, v.d + 1));
				}
			}
		}
		return 0;
	}

}
0