結果

問題 No.92 逃走経路
ユーザー k_kadorak_kadora
提出日時 2015-06-24 03:21:10
言語 Java21
(openjdk 21)
結果
AC  
実行時間 571 ms / 5,000 ms
コード長 1,299 bytes
コンパイル時間 3,084 ms
コンパイル使用メモリ 77,156 KB
実行使用メモリ 58,852 KB
最終ジャッジ日時 2024-07-07 17:19:35
合計ジャッジ時間 9,318 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 384 ms
58,496 KB
testcase_01 AC 99 ms
52,740 KB
testcase_02 AC 112 ms
53,716 KB
testcase_03 AC 94 ms
52,508 KB
testcase_04 AC 113 ms
54,056 KB
testcase_05 AC 217 ms
57,872 KB
testcase_06 AC 206 ms
57,552 KB
testcase_07 AC 212 ms
57,792 KB
testcase_08 AC 166 ms
54,488 KB
testcase_09 AC 236 ms
55,104 KB
testcase_10 AC 393 ms
58,612 KB
testcase_11 AC 428 ms
58,656 KB
testcase_12 AC 571 ms
58,512 KB
testcase_13 AC 211 ms
55,036 KB
testcase_14 AC 239 ms
54,964 KB
testcase_15 AC 262 ms
57,036 KB
testcase_16 AC 258 ms
57,196 KB
testcase_17 AC 322 ms
58,852 KB
testcase_18 AC 322 ms
58,728 KB
testcase_19 AC 324 ms
58,620 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;
public class Yuki92{
	public static void main(String[] arg){
		Scanner sc = new Scanner(System.in);
		int n,k,m,res = 0,count = 0;
		boolean flag=false;
		n = sc.nextInt();
		m = sc.nextInt();
		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();
			b[i] = sc.nextInt();
			c[i] = sc.nextInt();
		}
		for(int i = 0; i<k;i++){
			d[i] = sc.nextInt();
		}
		int[] prev = new int[n];
		int[] next = new int[n];
		for(int i = 0;i<m;i++){
			if(c[i] == d[0]){
				prev[a[i]-1] = 1;
				prev[b[i]-1] = 1;
			}
		}
		for(int i = 1;i<k;i++){
			for(int j = 0;j<n;j++){
				if(prev[j] == 1){
					for(int l = 0;l<m;l++){
						if(d[i] == c[l]){
							if(a[l] == j + 1)next[b[l]-1]=1;
							if(b[l] == j + 1)next[a[l]-1]=1;
						}
					}
				}
			}
			for(int j = 0;j<n;j++){
				prev[j] = next[j];
				next[j] = 0;
			}
		}
		for(int i = 0;i<n;i++){
			if(prev[i] == 1)res++;
		}
		System.out.println(res);
		for(int i = 0;i<n;i++){
			if(count < res - 1&& prev[i] == 1){
				System.out.print(i+1);
				System.out.print(" ");
				flag = true;
			}
			if(count == res-1 && prev[i] == 1)System.out.println(i+1);
			if(flag){
				count++;
				flag = false;
			}
		}
	}
}
0