結果

問題 No.2316 Freight Train
ユーザー ks2mks2m
提出日時 2023-05-26 21:27:27
言語 Java21
(openjdk 21)
結果
AC  
実行時間 762 ms / 2,000 ms
コード長 1,607 bytes
コンパイル時間 2,662 ms
コンパイル使用メモリ 76,172 KB
実行使用メモリ 76,064 KB
最終ジャッジ日時 2024-06-07 05:29:12
合計ジャッジ時間 20,691 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 48 ms
37,032 KB
testcase_01 AC 49 ms
37,136 KB
testcase_02 AC 47 ms
36,960 KB
testcase_03 AC 762 ms
64,444 KB
testcase_04 AC 483 ms
53,676 KB
testcase_05 AC 407 ms
53,312 KB
testcase_06 AC 218 ms
43,744 KB
testcase_07 AC 526 ms
49,852 KB
testcase_08 AC 562 ms
63,776 KB
testcase_09 AC 524 ms
56,044 KB
testcase_10 AC 517 ms
54,044 KB
testcase_11 AC 583 ms
64,572 KB
testcase_12 AC 680 ms
62,096 KB
testcase_13 AC 663 ms
63,804 KB
testcase_14 AC 741 ms
65,120 KB
testcase_15 AC 688 ms
63,872 KB
testcase_16 AC 721 ms
64,992 KB
testcase_17 AC 680 ms
63,784 KB
testcase_18 AC 712 ms
64,152 KB
testcase_19 AC 702 ms
63,648 KB
testcase_20 AC 665 ms
63,776 KB
testcase_21 AC 704 ms
63,992 KB
testcase_22 AC 739 ms
65,332 KB
testcase_23 AC 647 ms
76,064 KB
testcase_24 AC 699 ms
69,220 KB
testcase_25 AC 657 ms
64,796 KB
testcase_26 AC 648 ms
64,644 KB
testcase_27 AC 400 ms
45,928 KB
testcase_28 AC 49 ms
37,068 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.BufferedReader;
import java.io.InputStreamReader;
import java.io.PrintWriter;

public class Main {
	public static void main(String[] args) throws Exception {
		BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
		String[] sa = br.readLine().split(" ");
		int n = Integer.parseInt(sa[0]);
		int q = Integer.parseInt(sa[1]);
		sa = br.readLine().split(" ");
		UnionFind uf = new UnionFind(n);
		for (int i = 0; i < n; i++) {
			int p = Integer.parseInt(sa[i]) - 1;
			if (p != -2) {
				uf.union(p, i);
			}
		}
		PrintWriter pw = new PrintWriter(System.out);
		for (int i = 0; i < q; i++) {
			sa = br.readLine().split(" ");
			int a = Integer.parseInt(sa[0]) - 1;
			int b = Integer.parseInt(sa[1]) - 1;
			if (uf.same(a, b)) {
				pw.println("Yes");
			} else {
				pw.println("No");
			}
		}
		pw.flush();
		br.close();
	}

	static class UnionFind {
		int[] parent, size;
		int num = 0; // 連結成分の数

		UnionFind(int n) {
			parent = new int[n];
			size = new int[n];
			num = n;
			for (int i = 0; i < n; i++) {
				parent[i] = i;
				size[i] = 1;
			}
		}

		void union(int x, int y) {
			int px = find(x);
			int py = find(y);
			if (px != py) {
				parent[px] = py;
				size[py] += size[px];
				num--;
			}
		}

		int find(int x) {
			if (parent[x] == x) {
				return x;
			}
			parent[x] = find(parent[x]);
			return parent[x];
		}

		/**
		 * xとyが同一連結成分か
		 */
		boolean same(int x, int y) {
			return find(x) == find(y);
		}

		/**
		 * xを含む連結成分のサイズ
		 */
		int size(int x) {
			return size[find(x)];
		}
	}
}
0