結果

問題 No.92 逃走経路
ユーザー GrenacheGrenache
提出日時 2015-11-23 14:04:22
言語 Java21
(openjdk 21)
結果
AC  
実行時間 431 ms / 5,000 ms
コード長 1,770 bytes
コンパイル時間 3,843 ms
コンパイル使用メモリ 79,124 KB
実行使用メモリ 59,524 KB
最終ジャッジ日時 2024-09-13 17:15:42
合計ジャッジ時間 10,785 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 367 ms
59,412 KB
testcase_01 AC 135 ms
54,192 KB
testcase_02 AC 137 ms
54,052 KB
testcase_03 AC 134 ms
53,880 KB
testcase_04 AC 140 ms
53,780 KB
testcase_05 AC 365 ms
59,180 KB
testcase_06 AC 333 ms
59,228 KB
testcase_07 AC 327 ms
59,092 KB
testcase_08 AC 206 ms
54,700 KB
testcase_09 AC 308 ms
58,208 KB
testcase_10 AC 417 ms
59,472 KB
testcase_11 AC 421 ms
59,480 KB
testcase_12 AC 431 ms
59,276 KB
testcase_13 AC 287 ms
58,156 KB
testcase_14 AC 305 ms
58,808 KB
testcase_15 AC 323 ms
58,548 KB
testcase_16 AC 323 ms
58,164 KB
testcase_17 AC 359 ms
59,524 KB
testcase_18 AC 354 ms
59,396 KB
testcase_19 AC 339 ms
59,412 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.ArrayDeque;
import java.util.ArrayList;
import java.util.List;
import java.util.Queue;
import java.util.Scanner;
import java.util.Set;
import java.util.TreeSet;


public class Main_yukicoder92 {

    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);

        int n = sc.nextInt();
        int m = sc.nextInt();
        int k = sc.nextInt();
        List<Queue<Edge>> edges = new ArrayList<Queue<Edge>>();
        for (int i = 0; i < n; i++) {
        	edges.add(new ArrayDeque<Edge>());
        }
        for (int i = 0; i < m; i++) {
        	int a = sc.nextInt() - 1;
        	int b = sc.nextInt() - 1;
        	int c = sc.nextInt();

        	edges.get(a).add(new Edge(a, b, c));
        	edges.get(b).add(new Edge(b, a, c));
        }

        int[] d = new int[k];
        for (int i = 0; i < k; i++) {
        	d[i] = sc.nextInt();
        }

    	Set<Integer> ret = new TreeSet<Integer>();
    	for (int i = 0; i < n; i++) {
    		ret.add(i);
    	}

    	for (int i = 0; i < k; i++) {
    		Set<Integer> tmp = new TreeSet<Integer>();
    		for (int v : ret) {
        		for (Edge e : edges.get(v)) {
        			if (e.w == d[i]) {
        				tmp.add(e.v);
        			}
        		}

    		}
    		ret = tmp;
    	}

        System.out.println(ret.size());
        boolean flag = false;
        for (int e : ret) {
        	if (!flag) {
        		System.out.printf("%d", e + 1);
        		flag = true;
        	} else {
        		System.out.printf(" %d", e + 1);
        	}
        }
        System.out.println("");

        sc.close();
    }

	private static class Edge {
//		int u; // from
		int v; // to
		int w; // cost

		Edge(int u, int v, int w) {
//			this.u = u;
			this.v = v;
			this.w = w;
		}
	}
}
0