結果

問題 No.1170 Never Want to Walk
ユーザー tentententen
提出日時 2020-08-17 11:10:12
言語 Java21
(openjdk 21)
結果
TLE  
実行時間 -
コード長 1,984 bytes
コンパイル時間 2,434 ms
コンパイル使用メモリ 77,324 KB
実行使用メモリ 69,840 KB
最終ジャッジ日時 2024-10-11 13:26:20
合計ジャッジ時間 17,050 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 136 ms
46,444 KB
testcase_01 AC 143 ms
41,328 KB
testcase_02 AC 142 ms
41,000 KB
testcase_03 AC 140 ms
41,296 KB
testcase_04 AC 139 ms
41,336 KB
testcase_05 AC 140 ms
41,484 KB
testcase_06 AC 140 ms
41,060 KB
testcase_07 AC 143 ms
41,440 KB
testcase_08 AC 141 ms
41,088 KB
testcase_09 AC 141 ms
41,568 KB
testcase_10 AC 126 ms
40,044 KB
testcase_11 AC 141 ms
41,360 KB
testcase_12 AC 199 ms
42,444 KB
testcase_13 AC 204 ms
42,364 KB
testcase_14 AC 194 ms
42,552 KB
testcase_15 AC 201 ms
42,140 KB
testcase_16 AC 199 ms
42,608 KB
testcase_17 AC 207 ms
42,624 KB
testcase_18 AC 289 ms
42,224 KB
testcase_19 AC 202 ms
42,288 KB
testcase_20 AC 197 ms
42,460 KB
testcase_21 AC 198 ms
42,352 KB
testcase_22 AC 233 ms
42,352 KB
testcase_23 AC 221 ms
42,492 KB
testcase_24 AC 234 ms
42,796 KB
testcase_25 AC 235 ms
42,964 KB
testcase_26 AC 240 ms
42,716 KB
testcase_27 AC 978 ms
59,344 KB
testcase_28 AC 929 ms
59,572 KB
testcase_29 AC 935 ms
61,188 KB
testcase_30 AC 962 ms
57,080 KB
testcase_31 AC 916 ms
59,216 KB
testcase_32 TLE -
testcase_33 -- -
testcase_34 -- -
testcase_35 -- -
testcase_36 -- -
testcase_37 -- -
testcase_38 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        int n = sc.nextInt();
        int a = sc.nextInt();
        int b = sc.nextInt();
        int[] arr = new int[n + 1];
        for (int i = 0; i < n; i++) {
            arr[i] = sc.nextInt();
        }
        arr[n] = Integer.MAX_VALUE;
        int left = 0;
        int right = 0;
        UnionFindTree uft = new UnionFindTree(n);
        for (int i = 0; i < n; i++) {
            while (arr[left] - arr[i] < a) {
                left++;
            }
            if (left == n) {
                break;
            }
            while(arr[right] - arr[i] <= b) {
                right++;
            }
            for (int j = left; j < right; j++) {
                uft.unite(i, j);
            }
        }
        StringBuilder sb = new StringBuilder();
        for (int i = 0; i < n; i++) {
            sb.append(uft.getCount(i)).append("\n");
        }
        System.out.print(sb);
   }
   
   static class UnionFindTree {
       int[] parents;
       int[] counts;
       
       public UnionFindTree(int size) {
           parents = new int[size];
           counts = new int[size];
           for (int i = 0; i < size; i++) {
               parents[i] = i;
               counts[i] = 1;
           }
       }
       
       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)) {
               int xx =find(x);
               int yy = find(y);
               parents[xx] = yy;
               counts[yy] += counts[xx];
           }
       }
       
       public int getCount(int x) {
           return counts[find(x)];
       }
   }
}
0