結果

問題 No.1170 Never Want to Walk
ユーザー ks2mks2m
提出日時 2020-08-14 21:49:04
言語 Java21
(openjdk 21)
結果
TLE  
実行時間 -
コード長 1,584 bytes
コンパイル時間 3,401 ms
コンパイル使用メモリ 77,156 KB
実行使用メモリ 85,576 KB
最終ジャッジ日時 2024-10-10 14:58:31
合計ジャッジ時間 11,579 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 53 ms
57,228 KB
testcase_01 AC 54 ms
50,000 KB
testcase_02 AC 54 ms
50,424 KB
testcase_03 AC 55 ms
50,352 KB
testcase_04 AC 56 ms
49,876 KB
testcase_05 AC 55 ms
50,348 KB
testcase_06 AC 55 ms
50,432 KB
testcase_07 AC 54 ms
50,128 KB
testcase_08 AC 54 ms
50,520 KB
testcase_09 AC 54 ms
50,392 KB
testcase_10 AC 54 ms
50,492 KB
testcase_11 AC 54 ms
50,460 KB
testcase_12 AC 66 ms
50,692 KB
testcase_13 AC 67 ms
50,632 KB
testcase_14 AC 69 ms
50,480 KB
testcase_15 AC 67 ms
50,984 KB
testcase_16 AC 68 ms
50,920 KB
testcase_17 AC 78 ms
50,980 KB
testcase_18 AC 73 ms
50,984 KB
testcase_19 AC 79 ms
50,788 KB
testcase_20 AC 79 ms
50,892 KB
testcase_21 AC 77 ms
50,536 KB
testcase_22 AC 119 ms
52,504 KB
testcase_23 AC 106 ms
52,044 KB
testcase_24 AC 119 ms
52,608 KB
testcase_25 AC 117 ms
52,728 KB
testcase_26 AC 114 ms
52,288 KB
testcase_27 AC 512 ms
71,388 KB
testcase_28 AC 531 ms
71,220 KB
testcase_29 AC 521 ms
72,072 KB
testcase_30 AC 505 ms
72,076 KB
testcase_31 AC 500 ms
71,524 KB
testcase_32 TLE -
testcase_33 -- -
testcase_34 -- -
testcase_35 -- -
testcase_36 -- -
testcase_37 -- -
testcase_38 -- -
権限があれば一括ダウンロードができます

ソースコード

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 a = Integer.parseInt(sa[1]);
		int b = Integer.parseInt(sa[2]);
		sa = br.readLine().split(" ");
		int[] x = new int[n];
		for (int i = 0; i < n; i++) {
			x[i] = Integer.parseInt(sa[i]);
		}
		br.close();

		UnionFind uf = new UnionFind(n);
		int l = 0;
		int r = 0;
		for (int i = 0; i < n; i++) {
			while (l < n && x[l] - x[i] < a) {
				l++;
			}
			r = l;
			while (r < n && x[r] - x[i] <= b) {
				uf.union(i, r);
				r++;
			}
		}

		PrintWriter pw = new PrintWriter(System.out);
		for (int i = 0; i < n; i++) {
			pw.println(uf.size(i));
		}
		pw.flush();
	}

	static class UnionFind {
		int[] parent, size;

		UnionFind(int n) {
			parent = new int[n];
			size = new int[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];
			}
		}

		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