結果

問題 No.2316 Freight Train
ユーザー tentententen
提出日時 2024-05-02 13:33:39
言語 Java21
(openjdk 21)
結果
AC  
実行時間 695 ms / 2,000 ms
コード長 2,257 bytes
コンパイル時間 3,002 ms
コンパイル使用メモリ 87,680 KB
実行使用メモリ 54,064 KB
最終ジャッジ日時 2024-11-23 03:40:31
合計ジャッジ時間 21,953 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 71 ms
37,864 KB
testcase_01 AC 63 ms
37,540 KB
testcase_02 AC 71 ms
38,216 KB
testcase_03 AC 625 ms
52,728 KB
testcase_04 AC 496 ms
49,408 KB
testcase_05 AC 441 ms
50,724 KB
testcase_06 AC 238 ms
45,604 KB
testcase_07 AC 509 ms
50,296 KB
testcase_08 AC 535 ms
51,360 KB
testcase_09 AC 529 ms
51,024 KB
testcase_10 AC 540 ms
51,284 KB
testcase_11 AC 547 ms
52,056 KB
testcase_12 AC 619 ms
52,316 KB
testcase_13 AC 675 ms
53,916 KB
testcase_14 AC 695 ms
53,280 KB
testcase_15 AC 670 ms
53,904 KB
testcase_16 AC 666 ms
53,880 KB
testcase_17 AC 657 ms
53,308 KB
testcase_18 AC 692 ms
53,300 KB
testcase_19 AC 679 ms
53,788 KB
testcase_20 AC 689 ms
53,220 KB
testcase_21 AC 675 ms
53,528 KB
testcase_22 AC 672 ms
54,064 KB
testcase_23 AC 622 ms
53,120 KB
testcase_24 AC 613 ms
53,116 KB
testcase_25 AC 577 ms
51,360 KB
testcase_26 AC 559 ms
52,340 KB
testcase_27 AC 361 ms
49,056 KB
testcase_28 AC 66 ms
37,888 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