結果

問題 No.92 逃走経路
ユーザー ぴろずぴろず
提出日時 2014-12-07 19:40:42
言語 Java21
(openjdk 21)
結果
AC  
実行時間 317 ms / 5,000 ms
コード長 1,756 bytes
コンパイル時間 2,321 ms
コンパイル使用メモリ 79,632 KB
実行使用メモリ 59,068 KB
最終ジャッジ日時 2024-06-11 16:12:27
合計ジャッジ時間 7,680 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 274 ms
59,068 KB
testcase_01 AC 112 ms
54,104 KB
testcase_02 AC 101 ms
52,824 KB
testcase_03 AC 125 ms
53,980 KB
testcase_04 AC 118 ms
54,300 KB
testcase_05 AC 266 ms
58,880 KB
testcase_06 AC 276 ms
58,968 KB
testcase_07 AC 263 ms
58,164 KB
testcase_08 AC 172 ms
54,580 KB
testcase_09 AC 197 ms
58,100 KB
testcase_10 AC 284 ms
58,800 KB
testcase_11 AC 317 ms
58,824 KB
testcase_12 AC 295 ms
58,732 KB
testcase_13 AC 209 ms
57,004 KB
testcase_14 AC 214 ms
57,276 KB
testcase_15 AC 237 ms
57,912 KB
testcase_16 AC 252 ms
57,292 KB
testcase_17 AC 265 ms
58,964 KB
testcase_18 AC 282 ms
59,032 KB
testcase_19 AC 280 ms
59,008 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package no092;

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

public class Main {

	@SuppressWarnings("unchecked")
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		int n = sc.nextInt();
		int m = sc.nextInt();
		int k = sc.nextInt();
		Graph g = new Graph(n);
		for(int i=0;i<m;i++) {
			g.addBidirectionalEdge(sc.nextInt()-1, sc.nextInt()-1, sc.nextInt());
		}
		int[] d = new int[k];
		for(int i=0;i<k;i++) {
			d[i] = sc.nextInt();
		}
		boolean[][] dp = new boolean[k+1][n];
		Arrays.fill(dp[0], true);
		for(int i=0;i<k;i++) {
			for(int v=0;v<n;v++) {
				if (!dp[i][v]) {
					continue;
				}
				for(Graph.Edge e:g.graph[v]) {
					if (e.cost == d[i]) {
						dp[i+1][e.to] = true;
					}
				}
			}
		}
		ArrayList<Integer> ans = new ArrayList<>();
		for(int i=0;i<n;i++) {
			if (dp[k][i] == true) {
				ans.add(i+1);
			}
		}
		System.out.println(ans.size());
		for(int i=0;i<ans.size();i++) {
			if (i > 0) {
				System.out.print(" ");
			}
			System.out.print(ans.get(i));
		}
		System.out.println();
	}

}
class Graph {
	public static final int INF = 1<<29;
	int n;
	ArrayList<Edge>[] graph;

	@SuppressWarnings("unchecked")
	public Graph(int n) {
		this.n = n;
		this.graph = new ArrayList[n];
		for(int i=0;i<n;i++) {
			graph[i] = new ArrayList<Edge>();
		}
	}

	public void addBidirectionalEdge(int from,int to,int cost) {
		addEdge(from,to,cost);
		addEdge(to,from,cost);
	}
	public void addEdge(int from,int to,int cost) {
		graph[from].add(new Edge(to, cost));
	}

	class Edge {
		int to;
		int cost;
		public Edge(int to,int cost) {
			this.to = to;
			this.cost = cost;
		}
	}

}
0