結果
問題 | No.92 逃走経路 |
ユーザー | takeya_okino |
提出日時 | 2017-06-17 11:57:41 |
言語 | Java21 (openjdk 21) |
結果 |
AC
|
実行時間 | 228 ms / 5,000 ms |
コード長 | 1,502 bytes |
コンパイル時間 | 2,376 ms |
コンパイル使用メモリ | 77,640 KB |
実行使用メモリ | 46,724 KB |
最終ジャッジ日時 | 2024-10-01 09:30:09 |
合計ジャッジ時間 | 7,777 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 223 ms
46,492 KB |
testcase_01 | AC | 114 ms
41,076 KB |
testcase_02 | AC | 115 ms
41,300 KB |
testcase_03 | AC | 116 ms
41,188 KB |
testcase_04 | AC | 117 ms
41,020 KB |
testcase_05 | AC | 220 ms
45,872 KB |
testcase_06 | AC | 205 ms
46,152 KB |
testcase_07 | AC | 205 ms
45,432 KB |
testcase_08 | AC | 171 ms
42,956 KB |
testcase_09 | AC | 191 ms
43,184 KB |
testcase_10 | AC | 220 ms
45,564 KB |
testcase_11 | AC | 219 ms
46,724 KB |
testcase_12 | AC | 228 ms
46,588 KB |
testcase_13 | AC | 179 ms
43,012 KB |
testcase_14 | AC | 188 ms
43,672 KB |
testcase_15 | AC | 197 ms
44,284 KB |
testcase_16 | AC | 199 ms
44,100 KB |
testcase_17 | AC | 222 ms
46,364 KB |
testcase_18 | AC | 228 ms
45,852 KB |
testcase_19 | AC | 219 ms
46,528 KB |
ソースコード
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(); int[] a = new int[M]; int[] b = new int[M]; int[] c = new int[M]; int[] d = new int[K]; for(int i = 0; i < M; i++) { a[i] = sc.nextInt() - 1; b[i] = sc.nextInt() - 1; c[i] = sc.nextInt(); } for(int i = 0; i < K; i++) { d[i] = sc.nextInt(); } // dp[i][j]はd1~di(i個)までから町jが可能性があるかどうかを表す int[][] dp = new int[K + 1][N]; for(int j = 0; j < N; j++) { dp[0][j] = 1; } for(int i = 1; i < K + 1; i++) { for(int k = 0; k < M; k++) { if(c[k] == d[i - 1]) { int towna = a[k]; int townb = b[k]; if(dp[i][towna] == 0) { dp[i][towna] = dp[i - 1][townb]; } if(dp[i][townb] == 0) { dp[i][townb] = dp[i - 1][towna]; } } } } int ans = 0; for(int j = 0; j < N; j++) { ans += dp[K][j]; } System.out.println(ans); ArrayList<Integer> town = new ArrayList<Integer>(); for(int j = 0; j < N; j++) { if(dp[K][j] == 1) town.add(j + 1); } for(int j = 0; j < town.size(); j++) { System.out.print(town.get(j)); if(j < town.size() - 1) { System.out.print(" "); } else { System.out.println(); } } } }