結果

問題 No.1473 おでぶなおばけさん
ユーザー 小野寺健小野寺健
提出日時 2021-04-25 23:13:01
言語 Java21
(openjdk 21)
結果
TLE  
実行時間 -
コード長 1,364 bytes
コンパイル時間 4,832 ms
コンパイル使用メモリ 80,144 KB
実行使用メモリ 100,356 KB
最終ジャッジ日時 2023-09-17 14:17:54
合計ジャッジ時間 8,484 ms
ジャッジサーバーID
(参考情報)
judge14 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 133 ms
55,720 KB
testcase_01 AC 134 ms
55,868 KB
testcase_02 TLE -
testcase_03 -- -
testcase_04 -- -
testcase_05 -- -
testcase_06 -- -
testcase_07 -- -
testcase_08 -- -
testcase_09 -- -
testcase_10 -- -
testcase_11 -- -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
testcase_31 -- -
testcase_32 -- -
testcase_33 -- -
testcase_34 -- -
testcase_35 -- -
testcase_36 -- -
testcase_37 -- -
testcase_38 -- -
testcase_39 -- -
testcase_40 -- -
testcase_41 -- -
testcase_42 -- -
testcase_43 -- -
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 {
	
	public static class Peek {
		int d, n;
		List<Integer[]> v;
		public Peek() {
			d = 0;
			n = 0;
			v = new ArrayList<Integer[]>();
		}
	}

	public static void main(String[] args) {
		Scanner scan = new Scanner(System.in);
		int n = scan.nextInt();
		int m = scan.nextInt();
		List<Peek> V = new ArrayList<Peek>();
		for (int i = 0; i < n; i++) {
			V.add(new Peek());
		}
		for (int i = 0; i < m; i++) {
			int s = scan.nextInt() - 1;
			int t = scan.nextInt() - 1;
			int d = scan.nextInt();
			V.get(s).v.add(new Integer[] {t, d});
			V.get(t).v.add(new Integer[] {s, d});
		}
		scan.close();
		List<Integer[]> q = new ArrayList<Integer[]>();
		for (Integer[] i : V.get(0).v) {
			q.add(new Integer[] {i[0], i[1], 1});
		}
		while (q.size() > 0) {
			Integer[] i = q.remove(0);
			if (V.get(i[0]).d < i[1]) {
				V.get(i[0]).d = i[1];
				V.get(i[0]).n = i[2];
			} else if (V.get(i[0]).d == i[1] && V.get(i[0]).n > i[2]) {
				V.get(i[0]).n = i[2];
			} else {
				continue;
			}
			if (i[0] != n -1) {
				for (Integer[] j : V.get(i[0]).v) {
					if (j[0] != i[0]) {
						q.add(new Integer[] {j[0], Math.min(i[1], j[1]), i[2] + 1});
					}
				}
			}
		}
		System.out.println(String.format("%d %d", V.get(n-1).d, V.get(n-1).n));
	}

}
0