結果

問題 No.1805 Approaching Many Typhoon
ユーザー ripityripity
提出日時 2022-03-16 22:34:25
言語 Java21
(openjdk 21)
結果
AC  
実行時間 218 ms / 2,000 ms
コード長 1,528 bytes
コンパイル時間 2,185 ms
コンパイル使用メモリ 79,804 KB
実行使用メモリ 57,760 KB
最終ジャッジ日時 2024-09-25 01:35:03
合計ジャッジ時間 9,048 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 123 ms
54,340 KB
testcase_01 AC 134 ms
53,892 KB
testcase_02 AC 124 ms
54,188 KB
testcase_03 AC 130 ms
54,088 KB
testcase_04 AC 113 ms
52,932 KB
testcase_05 AC 130 ms
54,200 KB
testcase_06 AC 112 ms
53,088 KB
testcase_07 AC 125 ms
54,012 KB
testcase_08 AC 132 ms
56,088 KB
testcase_09 AC 132 ms
54,140 KB
testcase_10 AC 127 ms
54,244 KB
testcase_11 AC 128 ms
54,044 KB
testcase_12 AC 128 ms
54,180 KB
testcase_13 AC 130 ms
54,372 KB
testcase_14 AC 131 ms
54,272 KB
testcase_15 AC 116 ms
53,872 KB
testcase_16 AC 122 ms
53,572 KB
testcase_17 AC 132 ms
54,128 KB
testcase_18 AC 131 ms
54,284 KB
testcase_19 AC 115 ms
52,964 KB
testcase_20 AC 127 ms
54,568 KB
testcase_21 AC 131 ms
54,212 KB
testcase_22 AC 130 ms
54,316 KB
testcase_23 AC 129 ms
54,192 KB
testcase_24 AC 125 ms
54,400 KB
testcase_25 AC 124 ms
53,920 KB
testcase_26 AC 123 ms
54,252 KB
testcase_27 AC 127 ms
53,964 KB
testcase_28 AC 205 ms
56,956 KB
testcase_29 AC 206 ms
56,748 KB
testcase_30 AC 198 ms
57,068 KB
testcase_31 AC 218 ms
57,760 KB
testcase_32 AC 145 ms
54,108 KB
testcase_33 AC 150 ms
54,360 KB
testcase_34 AC 182 ms
54,496 KB
testcase_35 AC 198 ms
56,432 KB
testcase_36 AC 202 ms
56,468 KB
testcase_37 AC 125 ms
54,180 KB
testcase_38 AC 124 ms
54,228 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
import java.io.*;

public class Main {
    
    public static Scanner sc = new Scanner(System.in);
    public static PrintWriter pw = new PrintWriter(System.out);
    
    public static void main(String[] args) {
        
        int t = 1;
        while( t > 0 ) {
            solve();
            t--;
        }
        
        pw.flush();
        
    }
    
    static void solve() {
        
        int N = sc.nextInt();
        int M = sc.nextInt();
        int S = sc.nextInt()-1;
        int G = sc.nextInt()-1;
        boolean[] visited = new boolean[N];
        ArrayList<ArrayList<Integer>> edge = new ArrayList<>();
        LinkedList<Integer> que = new LinkedList<>();
        
        for( int i = 0; i < N; i++ ) {
            edge.add(new ArrayList<>());
        }
        
        for( int i = 0; i < M; i++ ) {
            int f = sc.nextInt()-1;
            int t = sc.nextInt()-1;
            edge.get(f).add(t);
            edge.get(t).add(f);
        }
        
        int U = sc.nextInt();
        for( int i = 0; i < U; i++ ) {
            int x = sc.nextInt()-1;
            visited[x] = true;
        }
        
        que.offer(S);
        while( !que.isEmpty() ) {
            int now = que.poll();
            if( visited[now] ) continue;
            visited[now] = true;
            for( int next : edge.get(now) ) {
                if( !visited[next] ) que.offer(next);
            }
        }
        
        pw.println( visited[G] ? "Yes" : "No" );
        
    }
    
}
0