結果
問題 | No.92 逃走経路 |
ユーザー | fal_rnd |
提出日時 | 2017-01-20 14:55:46 |
言語 | Java21 (openjdk 21) |
結果 |
TLE
|
実行時間 | - |
コード長 | 1,184 bytes |
コンパイル時間 | 3,977 ms |
コンパイル使用メモリ | 80,768 KB |
実行使用メモリ | 72,508 KB |
最終ジャッジ日時 | 2024-06-02 07:59:13 |
合計ジャッジ時間 | 16,669 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | TLE | - |
testcase_01 | -- | - |
testcase_02 | -- | - |
testcase_03 | -- | - |
testcase_04 | -- | - |
testcase_05 | -- | - |
testcase_06 | -- | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
ソースコード
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(),m=s.nextInt(),k=s.nextInt(); int[] pay = new int[k]; Way[] way = new Way[m*2]; ArrayDeque<Integer> deque = new ArrayDeque<>(); { int a,b,c; for(int i=0;i<m;i++) { a=s.nextInt(); b=s.nextInt(); c=s.nextInt(); if(!deque.contains(a)) deque.add(a); if(!deque.contains(b)) deque.add(b); way[i*2 ]=new Way(a,b,c); way[i*2+1]=new Way(b,a,c); } Arrays.sort(way, (o1, o2) -> o1.a-o2.a); for(int i=0;i<k;i++) pay[i]=s.nextInt(); /* System.out.println(deque.toString()); System.out.println(Arrays.toString(pay)); */ } for(final int p:pay) { int size=deque.size(),poll; for(int i=0;i<size;i++) { poll=deque.poll(); for(Way w:way) { if(w.a==poll&&w.c==p) deque.add(w.b); if(w.a>poll) break; } } } System.out.println(deque.size()); System.out.println(deque.toString().replaceAll("[^,0-9]", "").replaceAll(",", " ")); } } class Way{ int a,b,c; Way(int a,int b,int c) { this.a=a; this.b=b; this.c=c; } }