結果

問題 No.92 逃走経路
ユーザー tentententen
提出日時 2020-11-17 17:52:31
言語 Java21
(openjdk 21)
結果
AC  
実行時間 445 ms / 5,000 ms
コード長 1,895 bytes
コンパイル時間 2,756 ms
コンパイル使用メモリ 79,668 KB
実行使用メモリ 62,008 KB
最終ジャッジ日時 2024-07-23 08:23:25
合計ジャッジ時間 9,161 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 311 ms
60,848 KB
testcase_01 AC 127 ms
53,968 KB
testcase_02 AC 132 ms
54,360 KB
testcase_03 AC 128 ms
54,156 KB
testcase_04 AC 131 ms
54,284 KB
testcase_05 AC 351 ms
58,944 KB
testcase_06 AC 231 ms
57,828 KB
testcase_07 AC 226 ms
57,788 KB
testcase_08 AC 201 ms
55,008 KB
testcase_09 AC 275 ms
60,036 KB
testcase_10 AC 429 ms
59,384 KB
testcase_11 AC 437 ms
60,000 KB
testcase_12 AC 445 ms
62,008 KB
testcase_13 AC 245 ms
57,992 KB
testcase_14 AC 271 ms
57,708 KB
testcase_15 AC 298 ms
60,964 KB
testcase_16 AC 285 ms
58,304 KB
testcase_17 AC 298 ms
59,132 KB
testcase_18 AC 270 ms
58,700 KB
testcase_19 AC 257 ms
57,976 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        int n = sc.nextInt();
        int m = sc.nextInt();
        int k = sc.nextInt();
        HashMap<Integer, HashMap<Integer, ArrayList<Integer>>> route = new HashMap<>();
        for (int i = 0; i < m; i++) {
            int a = sc.nextInt();
            int b = sc.nextInt();
            int c = sc.nextInt();
            if (!route.containsKey(c)) {
                route.put(c, new HashMap<>());
            }
            if (!route.get(c).containsKey(a)) {
                route.get(c).put(a, new ArrayList<>());
            }
            route.get(c).get(a).add(b);
            if (!route.get(c).containsKey(b)) {
                route.get(c).put(b, new ArrayList<>());
            }
            route.get(c).get(b).add(a);
        }
        ArrayList<TreeSet<Integer>> currents = new ArrayList<>();
        for (int i = 0; i <= k; i++) {
            currents.add(new TreeSet<>());
        }
        for (int i = 1; i <= n; i++) {
            currents.get(0).add(i);
        }
        for (int i = 0; i < k; i++) {
            int x = sc.nextInt();
            HashMap<Integer, ArrayList<Integer>> tmp = route.get(x);
            if (tmp == null) {
                break;
            }
            for (int y : currents.get(i)) {
                if (tmp.containsKey(y)) {
                    currents.get(i + 1).addAll(tmp.get(y));
                }
            }
        }
        StringBuilder sb = new StringBuilder();
        sb.append(currents.get(k).size()).append("\n");
        boolean isFirst = true;
        for (int x : currents.get(k)) {
            if (isFirst) {
                isFirst = false;
            } else {
                sb.append(" ");
            }
            sb.append(x);
        }
        System.out.println(sb);
    }
}
0