結果

問題 No.92 逃走経路
ユーザー fal_rndfal_rnd
提出日時 2017-01-20 17:52:48
言語 Java21
(openjdk 21)
結果
AC  
実行時間 299 ms / 5,000 ms
コード長 1,135 bytes
コンパイル時間 3,703 ms
コンパイル使用メモリ 81,024 KB
実行使用メモリ 59,004 KB
最終ジャッジ日時 2024-06-02 07:59:53
合計ジャッジ時間 8,257 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 237 ms
58,808 KB
testcase_01 AC 106 ms
52,880 KB
testcase_02 AC 115 ms
54,168 KB
testcase_03 AC 107 ms
52,980 KB
testcase_04 AC 112 ms
53,344 KB
testcase_05 AC 273 ms
59,004 KB
testcase_06 AC 225 ms
58,252 KB
testcase_07 AC 223 ms
58,348 KB
testcase_08 AC 166 ms
54,520 KB
testcase_09 AC 191 ms
55,260 KB
testcase_10 AC 299 ms
58,620 KB
testcase_11 AC 297 ms
58,772 KB
testcase_12 AC 297 ms
58,892 KB
testcase_13 AC 186 ms
54,848 KB
testcase_14 AC 197 ms
56,984 KB
testcase_15 AC 204 ms
56,904 KB
testcase_16 AC 220 ms
57,028 KB
testcase_17 AC 238 ms
58,492 KB
testcase_18 AC 238 ms
57,668 KB
testcase_19 AC 226 ms
58,096 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package src;

import java.util.*;
public class A{
	static Scanner s = new Scanner(System.in);
	public static void main(String[] args) {
		int n=s.nextInt()+1,m=s.nextInt(),k=s.nextInt();
		BitSet[] dp = new BitSet[k+1];
						{
							for(int i=0;i<dp.length;i++) dp[i] = new BitSet(n);
							dp[0].set(1,n);
						}
		Way[] way =new Way[m*2];
						{
							int a,b,c;
							for(int i=0;i<m;i++) {
								a=s.nextInt();
								b=s.nextInt();
								c=s.nextInt();
								way[i*2  ]=new Way(a, b, c);
								way[i*2+1]=new Way(b, a, c);
							}
						}
		int[] pay = new int[k];
						{
							for(int i=0;i<k;i++) pay[i]=s.nextInt();
							Arrays.sort(way, (o1,o2)->o1.c-o2.c);
						}
		for(int i=0;i<k;i++) {
			int p=pay[i];
			for(Way w:way) {
				if(w.c==p && dp[i].get(w.a)) {
					dp[i+1].set(w.b);
				}
			}
		}
		System.out.println(dp[k].cardinality());
		System.out.println(dp[k].toString().replaceAll("[^0-9,]", "").replaceAll(",", " "));
		/*
		System.out.println();
		for(int i=0;i<k;i++) System.out.println(dp[i].toString());
		*/
	}
}
class Way{
	int a,b,c;
	Way(int p,int q,int r) {
		a=p;
		b=q;
		c=r;
	}
}
0