結果

問題 No.2316 Freight Train
ユーザー tentententen
提出日時 2024-05-02 13:33:39
言語 Java21
(openjdk 21)
結果
AC  
実行時間 645 ms / 2,000 ms
コード長 2,257 bytes
コンパイル時間 3,309 ms
コンパイル使用メモリ 88,484 KB
実行使用メモリ 53,792 KB
最終ジャッジ日時 2024-05-02 13:34:03
合計ジャッジ時間 20,191 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 58 ms
37,612 KB
testcase_01 AC 70 ms
38,160 KB
testcase_02 AC 73 ms
37,836 KB
testcase_03 AC 592 ms
53,112 KB
testcase_04 AC 458 ms
50,180 KB
testcase_05 AC 400 ms
50,000 KB
testcase_06 AC 222 ms
45,756 KB
testcase_07 AC 504 ms
49,840 KB
testcase_08 AC 497 ms
51,904 KB
testcase_09 AC 502 ms
50,060 KB
testcase_10 AC 495 ms
51,284 KB
testcase_11 AC 484 ms
52,024 KB
testcase_12 AC 546 ms
52,672 KB
testcase_13 AC 600 ms
53,748 KB
testcase_14 AC 645 ms
53,792 KB
testcase_15 AC 599 ms
53,428 KB
testcase_16 AC 607 ms
52,860 KB
testcase_17 AC 615 ms
53,684 KB
testcase_18 AC 584 ms
53,476 KB
testcase_19 AC 584 ms
53,036 KB
testcase_20 AC 587 ms
53,232 KB
testcase_21 AC 612 ms
53,336 KB
testcase_22 AC 590 ms
53,208 KB
testcase_23 AC 514 ms
52,464 KB
testcase_24 AC 556 ms
52,624 KB
testcase_25 AC 559 ms
51,360 KB
testcase_26 AC 494 ms
51,388 KB
testcase_27 AC 309 ms
48,868 KB
testcase_28 AC 56 ms
37,452 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;
import java.util.*;
import java.util.function.*;
import java.util.stream.*;

public class Main {
    public static void main(String[] args) throws Exception {
        Scanner sc = new Scanner();
        int n = sc.nextInt();
        int q = sc.nextInt();
        UnionFindTree uft = new UnionFindTree(n);
        for (int i = 0; i < n; i++) {
            int x = sc.nextInt();
            if (x > 0) {
                uft.unite(i, x - 1);
            }
        }
        String result = IntStream.range(0, q).mapToObj(i -> uft.same(sc.nextInt() - 1, sc.nextInt() - 1) ? "Yes" : "No")
            .collect(Collectors.joining("\n"));
        System.out.println(result);
    }
    
    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;
    StringTokenizer st = new StringTokenizer("");
    StringBuilder sb = new StringBuilder();
    
    public Scanner() {
        try {
            br = new BufferedReader(new InputStreamReader(System.in));
        } catch (Exception e) {
            
        }
    }
    
    public int nextInt() {
        return Integer.parseInt(next());
    }
    
    public long nextLong() {
        return Long.parseLong(next());
    }
    
    public double nextDouble() {
        return Double.parseDouble(next());
    }
    
    public String next() {
        try {
            while (!st.hasMoreTokens()) {
                st = new StringTokenizer(br.readLine());
            }
        } catch (Exception e) {
            e.printStackTrace();
        } finally {
            return st.nextToken();
        }
    }
    
}
0