結果

問題 No.1805 Approaching Many Typhoon
ユーザー tentententen
提出日時 2022-01-21 16:33:30
言語 Java21
(openjdk 21)
結果
AC  
実行時間 95 ms / 2,000 ms
コード長 2,432 bytes
コンパイル時間 2,822 ms
コンパイル使用メモリ 78,380 KB
実行使用メモリ 51,664 KB
最終ジャッジ日時 2024-05-04 05:53:58
合計ジャッジ時間 5,284 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 46 ms
50,236 KB
testcase_01 AC 46 ms
50,160 KB
testcase_02 AC 48 ms
50,068 KB
testcase_03 AC 46 ms
50,112 KB
testcase_04 AC 46 ms
50,220 KB
testcase_05 AC 46 ms
50,212 KB
testcase_06 AC 47 ms
49,856 KB
testcase_07 AC 46 ms
50,140 KB
testcase_08 AC 48 ms
49,956 KB
testcase_09 AC 47 ms
49,836 KB
testcase_10 AC 48 ms
50,004 KB
testcase_11 AC 47 ms
50,344 KB
testcase_12 AC 47 ms
50,148 KB
testcase_13 AC 46 ms
50,340 KB
testcase_14 AC 47 ms
49,964 KB
testcase_15 AC 58 ms
49,952 KB
testcase_16 AC 46 ms
50,120 KB
testcase_17 AC 46 ms
50,336 KB
testcase_18 AC 47 ms
50,112 KB
testcase_19 AC 48 ms
50,312 KB
testcase_20 AC 50 ms
50,376 KB
testcase_21 AC 49 ms
50,108 KB
testcase_22 AC 49 ms
50,212 KB
testcase_23 AC 48 ms
50,316 KB
testcase_24 AC 50 ms
50,432 KB
testcase_25 AC 51 ms
49,836 KB
testcase_26 AC 49 ms
50,316 KB
testcase_27 AC 49 ms
50,084 KB
testcase_28 AC 88 ms
51,016 KB
testcase_29 AC 87 ms
51,128 KB
testcase_30 AC 87 ms
51,612 KB
testcase_31 AC 95 ms
51,664 KB
testcase_32 AC 49 ms
50,148 KB
testcase_33 AC 49 ms
50,232 KB
testcase_34 AC 57 ms
50,224 KB
testcase_35 AC 83 ms
51,104 KB
testcase_36 AC 83 ms
51,236 KB
testcase_37 AC 47 ms
49,968 KB
testcase_38 AC 48 ms
49,824 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 start = sc.nextInt() - 1;
        int goal = sc.nextInt() - 1;
        int[] lefts = new int[m];
        int[] rights = new int[m];
        for (int i = 0; i < m; i++) {
            lefts[i] = sc.nextInt() - 1;
            rights[i] = sc.nextInt() - 1;
        }
        int u = sc.nextInt();
        HashSet<Integer> ngs = new HashSet<>();
        for (int i = 0; i < u; i++) {
            ngs.add(sc.nextInt() - 1);
        }
        UnionFindTree uft = new UnionFindTree(n);
        for (int i = 0; i < m; i++) {
            if (!ngs.contains(lefts[i]) && !ngs.contains(rights[i])) {
                uft.unite(lefts[i], rights[i]);
            }
        }
        if (uft.same(start, goal)) {
            System.out.println("Yes");
        } else {
            System.out.println("No");
        }
    }
    
    static class UnionFindTree {
        int[] parents;
        
        public UnionFindTree(int size) {
            parents = new int[size];
            for (int i = 0; i < size; i++) {
                parents[i] = i;
            }
        }
        
        public int find(int x) {
            if (x == parents[x]) {
                return x;
            } else {
                return parents[x] = find(parents[x]);
            }
        }
        
        public boolean same(int x, int y) {
            return find(x) == find(y);
        }
        
        public void unite(int x, int y) {
            if (!same(x, y)) {
                parents[find(x)] = find(y);
            }
        }
    }
}

class Scanner {
    BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
    StringTokenizer st = new StringTokenizer("");
    
    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 {
        if (!st.hasMoreTokens()) {
            st = new StringTokenizer(br.readLine());
        }
        return st.nextToken();
    }
}
0