結果

問題 No.92 逃走経路
ユーザー yuki2006yuki2006
提出日時 2015-01-25 18:07:09
言語 Java21
(openjdk 21)
結果
AC  
実行時間 251 ms / 5,000 ms
コード長 1,661 bytes
コンパイル時間 3,743 ms
コンパイル使用メモリ 77,384 KB
実行使用メモリ 45,876 KB
最終ジャッジ日時 2024-06-23 02:40:49
合計ジャッジ時間 8,698 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 240 ms
45,876 KB
testcase_01 AC 128 ms
41,268 KB
testcase_02 AC 128 ms
41,200 KB
testcase_03 AC 115 ms
39,852 KB
testcase_04 AC 131 ms
41,044 KB
testcase_05 AC 239 ms
45,520 KB
testcase_06 AC 228 ms
45,596 KB
testcase_07 AC 228 ms
45,564 KB
testcase_08 AC 188 ms
42,176 KB
testcase_09 AC 188 ms
42,404 KB
testcase_10 AC 251 ms
45,672 KB
testcase_11 AC 237 ms
45,320 KB
testcase_12 AC 243 ms
45,700 KB
testcase_13 AC 198 ms
42,548 KB
testcase_14 AC 211 ms
42,880 KB
testcase_15 AC 210 ms
43,748 KB
testcase_16 AC 219 ms
43,864 KB
testcase_17 AC 242 ms
45,720 KB
testcase_18 AC 237 ms
45,668 KB
testcase_19 AC 239 ms
45,416 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Arrays;
import java.util.Scanner;

public class Yuki092 {
    public static void main(String[] args) {
        Yuki092 hoge = new Yuki092();
    }

    Yuki092() {
        Scanner scanner = new Scanner(System.in);
        int N = scanner.nextInt();
        int M = scanner.nextInt();
        int K = scanner.nextInt();

        int[] a = new int[M];
        int[] b = new int[M];
        int[] c = new int[M];


        boolean[] prev = new boolean[N + 1];

        Arrays.fill(prev, true);

        for (int i = 0; i < M; i++) {

            a[i] = scanner.nextInt();
            b[i] = scanner.nextInt();
            c[i] = scanner.nextInt();
        }
        for (int i = 0; i < K; i++) {
            int d = scanner.nextInt();

            boolean[] next = new boolean[N+1];
            for (int j = 0; j < M; j++) {
                if (c[j] == d) {
                    int u = a[j], v = b[j];
                    if (prev[u]) {
                        next[v] = true;
                    }
                    if (prev[v]) {
                        next[u] = true;
                    }
                }
            }
            prev = next;
        }
        int count = 0;
        for (int j = 0; j < N+1; j++) {
            if (prev[j]) {
                count++;
            }
        }
        System.out.println(count);

        StringBuilder ans = new StringBuilder();
        for (int j = 0; j < N+1; j++) {
            if (prev[j]) {
                if (ans.length() > 0) {
                    ans.append(" ");
                }
                ans.append(j);
            }
        }
        System.out.println(ans);

    }

}
0