結果

問題 No.92 逃走経路
ユーザー kou6839kou6839
提出日時 2014-12-21 11:52:19
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 1,609 bytes
コンパイル時間 2,575 ms
コンパイル使用メモリ 84,240 KB
実行使用メモリ 59,940 KB
最終ジャッジ日時 2024-06-12 02:57:33
合計ジャッジ時間 8,433 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 163 ms
42,156 KB
testcase_02 AC 164 ms
42,028 KB
testcase_03 AC 161 ms
42,300 KB
testcase_04 AC 163 ms
42,344 KB
testcase_05 AC 331 ms
47,352 KB
testcase_06 AC 329 ms
47,236 KB
testcase_07 AC 325 ms
46,740 KB
testcase_08 AC 237 ms
44,580 KB
testcase_09 AC 251 ms
44,412 KB
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.math.*;
import java.util.*;
class Pare{
	int to;
	int cost;
	Pare(int a,int b){
		to=a;
		cost=b;
	}
}
class Main{
	static void dfs(int nowc,int nowk,ArrayList<Pare>[] mati,int[] d,int[][] memo,boolean[] check){
		if(nowk==d.length){
			check[nowc]=true;
			return;
		}
		if(mati[nowc]==null) return;
		for(int i=0;i<mati[nowc].size();i++){
			if(mati[nowc].get(i).cost==d[nowk] && memo[nowc][nowk]==0){
				dfs(mati[nowc].get(i).to,nowk+1,mati,d,memo,check);
				memo[nowc][nowk]=1;
			}
		}
		
	}
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        int n = sc.nextInt();
        int m = sc.nextInt();
        int k = sc.nextInt();
        ArrayList<Pare>[] miti = new ArrayList[n];
        for(int i=0;i<m;i++){
        	int a = sc.nextInt()-1;
        	int b = sc.nextInt()-1;
        	int c = sc.nextInt();
        	if(miti[a]==null) miti[a]=new ArrayList<Pare>();
        	if(miti[b]==null) miti[b]=new ArrayList<Pare>();
        	miti[a].add(new Pare(b,c));
        	miti[b].add(new Pare(a,c));
        }
        int[] d = new int[k];
        for(int i=0;i<k;i++){
        	d[i]=sc.nextInt();
        }
        int[][] memo = new int[n][k];
        boolean[] check = new boolean[n];
        for(int i=0;i<n;i++){
        	dfs(i,0,miti,d,memo,check);
        }
        int ans=0;
        for(int i=0;i<n;i++){
        	if(check[i]) ans++;
        }
        System.out.println(ans);
        String aa ="";
        for(int i=0;i<n;i++){
        	if(check[i]) aa+=(i+1)+" ";
        }
        System.out.println(aa.trim());
        
        
    }
}
0