結果

問題 No.92 逃走経路
ユーザー tsunabittsunabit
提出日時 2020-02-24 00:26:07
言語 Java21
(openjdk 21)
結果
AC  
実行時間 296 ms / 5,000 ms
コード長 1,266 bytes
コンパイル時間 4,205 ms
コンパイル使用メモリ 85,376 KB
実行使用メモリ 58,812 KB
最終ジャッジ日時 2024-10-11 00:57:25
合計ジャッジ時間 10,036 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 272 ms
57,792 KB
testcase_01 AC 150 ms
53,932 KB
testcase_02 AC 150 ms
54,104 KB
testcase_03 AC 155 ms
53,880 KB
testcase_04 AC 152 ms
53,808 KB
testcase_05 AC 283 ms
58,532 KB
testcase_06 AC 261 ms
57,972 KB
testcase_07 AC 260 ms
57,552 KB
testcase_08 AC 213 ms
56,824 KB
testcase_09 AC 233 ms
56,912 KB
testcase_10 AC 284 ms
58,812 KB
testcase_11 AC 287 ms
58,364 KB
testcase_12 AC 296 ms
58,660 KB
testcase_13 AC 240 ms
57,020 KB
testcase_14 AC 244 ms
56,824 KB
testcase_15 AC 251 ms
56,956 KB
testcase_16 AC 252 ms
57,104 KB
testcase_17 AC 272 ms
58,744 KB
testcase_18 AC 277 ms
57,552 KB
testcase_19 AC 267 ms
58,532 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
import java.io.*;
import java.math.*;

public class No92 {
	public static void main(String[] args) {
		try {
			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];
			for(int i = 0; i < m; i++) {
				a[i] = sc.nextInt();
				b[i] = sc.nextInt();
				c[i] = sc.nextInt();
			}
			
			int[] d = new int[k];
			for(int i = 0; i < k; i++) {
				d[i] = sc.nextInt();
			}
			
			int[][] dp = new int[k][n];
			for(int[] x: dp){
			    java.util.Arrays.fill(x, 0);
			}
			
			// d[0]処理
			for(int i = 0; i < m; i++) {
				if(d[0] == c[i]) {
					dp[0][a[i]-1] = 1;
					dp[0][b[i]-1] = 1;
				}
			}
			
			for(int i = 1; i < k; i++) {
				for(int j = 0; j < m; j++) {
					if(d[i] == c[j]) {
						if(dp[i-1][a[j]-1] == 1) dp[i][b[j]-1] = 1;
						if(dp[i-1][b[j]-1] == 1) dp[i][a[j]-1] = 1;
					}
				}
			}
			
			int ans = 0;
			for(int i = 0; i < n; i++) ans += dp[k-1][i];
			System.out.println(ans);
			
			for(int i = 0; i < n; i++) {
				if(dp[k-1][i] == 1) System.out.print(i+1 + " ");
			}
			System.out.println("");
		} catch(Exception e) {
			System.out.println(e);
            return;
		}
	}
}
0