結果

問題 No.92 逃走経路
ユーザー 37zigen37zigen
提出日時 2016-03-23 19:45:24
言語 Java21
(openjdk 21)
結果
AC  
実行時間 258 ms / 5,000 ms
コード長 1,238 bytes
コンパイル時間 2,288 ms
コンパイル使用メモリ 78,744 KB
実行使用メモリ 58,172 KB
最終ジャッジ日時 2024-10-01 21:37:36
合計ジャッジ時間 7,610 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 239 ms
57,884 KB
testcase_01 AC 137 ms
54,168 KB
testcase_02 AC 134 ms
54,052 KB
testcase_03 AC 136 ms
54,068 KB
testcase_04 AC 133 ms
54,120 KB
testcase_05 AC 237 ms
57,988 KB
testcase_06 AC 222 ms
57,536 KB
testcase_07 AC 221 ms
57,504 KB
testcase_08 AC 189 ms
56,428 KB
testcase_09 AC 215 ms
57,128 KB
testcase_10 AC 245 ms
57,800 KB
testcase_11 AC 241 ms
57,760 KB
testcase_12 AC 258 ms
57,976 KB
testcase_13 AC 207 ms
57,032 KB
testcase_14 AC 216 ms
57,200 KB
testcase_15 AC 221 ms
57,060 KB
testcase_16 AC 224 ms
56,868 KB
testcase_17 AC 243 ms
58,172 KB
testcase_18 AC 238 ms
57,780 KB
testcase_19 AC 235 ms
57,784 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package yukicoder244;
import java.util.Scanner;
import java.util.TreeSet;
public class Main {
	public static void main(String[] args){
		Scanner sc=new Scanner(System.in);
		int n=sc.nextInt();//the number of the cities
		int m=sc.nextInt();//the number of the roads
		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();//city number
			b[i]=sc.nextInt();//city number
			c[i]=sc.nextInt();//toll
		}
		int[] d=new int[k+1];
		for(int i=1;i<k+1;i++){
			d[i]=sc.nextInt();//record
		}
		int[][] dp=new int[k+1][n+1];
		for(int i=0;i<k+1;i++){
			for(int j=0;j<n+1;j++){
				dp[i][j]=0;
			}
		}
		
		for(int i=0;i<m;i++){
			if(c[i]==d[1]){
				dp[1][a[i]]=dp[1][b[i]]=1;
			}
		}
		for(int i=2;i<=k;i++){
			for(int j=0;j<m;j++){
				if(c[j]==d[i]){
					if(dp[i-1][a[j]]==1)dp[i][b[j]]=1;
					if(dp[i-1][b[j]]==1)dp[i][a[j]]=1;
				}
			}
		}
		TreeSet<Integer> ret=new TreeSet<Integer>();
		for(int i=1;i<=n;i++){
			if(dp[k][i]==1)ret.add(i);
		}
		System.out.println(ret.size());
		int count=0;
		for(Integer r:ret){
			count++;
			System.out.print(r);
			if(count!=ret.size())System.out.print(" ");
		}
		System.out.println();
		sc.close();
	}
}
0