結果

問題 No.92 逃走経路
ユーザー htensaihtensai
提出日時 2019-12-05 19:28:49
言語 Java21
(openjdk 21)
結果
AC  
実行時間 666 ms / 5,000 ms
コード長 1,670 bytes
コンパイル時間 2,684 ms
コンパイル使用メモリ 80,716 KB
実行使用メモリ 65,724 KB
最終ジャッジ日時 2024-06-01 10:05:08
合計ジャッジ時間 9,825 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 326 ms
59,072 KB
testcase_01 AC 140 ms
54,208 KB
testcase_02 AC 139 ms
54,360 KB
testcase_03 AC 138 ms
54,216 KB
testcase_04 AC 140 ms
54,036 KB
testcase_05 AC 386 ms
59,148 KB
testcase_06 AC 328 ms
58,724 KB
testcase_07 AC 323 ms
58,800 KB
testcase_08 AC 199 ms
54,752 KB
testcase_09 AC 249 ms
62,060 KB
testcase_10 AC 461 ms
63,152 KB
testcase_11 AC 613 ms
63,784 KB
testcase_12 AC 666 ms
65,724 KB
testcase_13 AC 239 ms
57,388 KB
testcase_14 AC 252 ms
57,728 KB
testcase_15 AC 292 ms
61,128 KB
testcase_16 AC 288 ms
60,884 KB
testcase_17 AC 321 ms
59,264 KB
testcase_18 AC 316 ms
58,940 KB
testcase_19 AC 308 ms
58,980 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    static ArrayList<Path>[] graph;
    static int k;
    static HashSet<Integer>[] visited;
    static TreeSet<Integer> ans = new TreeSet<>();
    static int[] costs;
	public static void main (String[] args) {
		Scanner sc = new Scanner(System.in);
		int n = sc.nextInt();
		int m = sc.nextInt();
		k = sc.nextInt();
		graph = new ArrayList[n + 1];
		visited = new HashSet[n + 1];
		costs = new int[k];
		for (int i = 1; i <= n; i++) {
		    graph[i] = new ArrayList<Path>();
		    visited[i] = new HashSet<Integer>();
		}
		for (int i = 0; i < m; i++) {
		    int a = sc.nextInt();
		    int b = sc.nextInt();
		    int c = sc.nextInt();
		    graph[a].add(new Path(b, c));
		    graph[b].add(new Path(a, c));
		}
		for (int i = 0; i < k; i++) {
		    costs[i] = sc.nextInt();
		}
		for (int i = 1; i <= n; i++) {
		    search(0, i);
		}
		System.out.println(ans.size());
		boolean notFirst = false;
		StringBuilder sb = new StringBuilder();
		for (Integer x : ans) {
		    if (notFirst) {
		        sb.append(" ");
		    }
		    sb.append(x);
		    notFirst = true;
		}
		System.out.println(sb);
   }
   
   static void search(int idx, int to) {
       if (visited[to].contains(idx)) {
           return;
       }
       if (idx >= k) {
           ans.add(to);
           return;
       }
       visited[to].add(idx);
       for (Path p : graph[to]) {
           if (costs[idx] == p.cost) {
               search(idx + 1, p.to);
           }
       }
   }
   
   static class Path {
       int to;
       int cost;
       public Path (int to, int cost) {
           this.to = to;
           this.cost = cost;
       }
   }
}

0