結果

問題 No.1805 Approaching Many Typhoon
ユーザー tentententen
提出日時 2022-09-28 09:50:13
言語 Java21
(openjdk 21)
結果
AC  
実行時間 108 ms / 2,000 ms
コード長 2,035 bytes
コンパイル時間 2,285 ms
コンパイル使用メモリ 79,276 KB
実行使用メモリ 39,784 KB
最終ジャッジ日時 2024-06-02 01:24:57
合計ジャッジ時間 6,228 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 59 ms
37,392 KB
testcase_01 AC 60 ms
37,060 KB
testcase_02 AC 59 ms
37,600 KB
testcase_03 AC 58 ms
37,064 KB
testcase_04 AC 58 ms
37,492 KB
testcase_05 AC 57 ms
37,320 KB
testcase_06 AC 58 ms
37,560 KB
testcase_07 AC 59 ms
37,172 KB
testcase_08 AC 58 ms
37,540 KB
testcase_09 AC 57 ms
37,380 KB
testcase_10 AC 59 ms
37,416 KB
testcase_11 AC 59 ms
37,192 KB
testcase_12 AC 57 ms
36,920 KB
testcase_13 AC 58 ms
37,612 KB
testcase_14 AC 57 ms
37,152 KB
testcase_15 AC 58 ms
37,076 KB
testcase_16 AC 58 ms
37,412 KB
testcase_17 AC 57 ms
37,480 KB
testcase_18 AC 58 ms
37,416 KB
testcase_19 AC 57 ms
37,416 KB
testcase_20 AC 58 ms
37,064 KB
testcase_21 AC 58 ms
37,064 KB
testcase_22 AC 57 ms
37,064 KB
testcase_23 AC 58 ms
37,204 KB
testcase_24 AC 57 ms
37,204 KB
testcase_25 AC 57 ms
37,600 KB
testcase_26 AC 58 ms
37,392 KB
testcase_27 AC 58 ms
37,668 KB
testcase_28 AC 105 ms
38,912 KB
testcase_29 AC 99 ms
39,376 KB
testcase_30 AC 106 ms
39,284 KB
testcase_31 AC 108 ms
39,784 KB
testcase_32 AC 60 ms
37,612 KB
testcase_33 AC 62 ms
37,048 KB
testcase_34 AC 70 ms
38,252 KB
testcase_35 AC 93 ms
38,756 KB
testcase_36 AC 87 ms
38,728 KB
testcase_37 AC 58 ms
37,540 KB
testcase_38 AC 59 ms
37,416 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

public class Main {
    public static void main(String[] args) throws Exception {
        Scanner sc = new Scanner();
        int n = sc.nextInt();
        int m = sc.nextInt();
        int s = sc.nextInt() - 1;
        int g = sc.nextInt() - 1;
        ArrayList<ArrayList<Integer>> graph = new ArrayList<>();
        for (int i = 0; i < n; i++) {
            graph.add(new ArrayList<>());
        }
        for (int i = 0; i < m; i++) {
            int a = sc.nextInt() - 1;
            int b = sc.nextInt() - 1;
            graph.get(a).add(b);
            graph.get(b).add(a);
        }
        HashSet<Integer> errors = new HashSet<>();
        int u = sc.nextInt();
        for (int i = 0; i < u; i++) {
            errors.add(sc.nextInt() - 1);
        }
        ArrayDeque<Integer> deq = new ArrayDeque<>();
        boolean[] visited = new boolean[n];
        deq.add(s);
        while (deq.size() > 0) {
            int x = deq.poll();
            if (visited[x] || errors.contains(x)) {
                continue;
            }
            visited[x] = true;
            deq.addAll(graph.get(x));
        }
        if (visited[g]) {
            System.out.println("Yes");
        } else {
            System.out.println("No");
        }
    }
}
    
class Scanner {
    BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
    StringTokenizer st = new StringTokenizer("");
    StringBuilder sb = new StringBuilder();
    
    public Scanner() throws Exception {
        
    }
    
    public int nextInt() throws Exception {
        return Integer.parseInt(next());
    }
    
    public long nextLong() throws Exception {
        return Long.parseLong(next());
    }
    
    public double nextDouble() throws Exception {
        return Double.parseDouble(next());
    }
    
    public String next() throws Exception {
        while (!st.hasMoreTokens()) {
            st = new StringTokenizer(br.readLine());
        }
        return st.nextToken();
    }
    
}
0