結果

問題 No.1059 素敵な集合
ユーザー tentententen
提出日時 2020-08-20 18:18:36
言語 Java21
(openjdk 21)
結果
AC  
実行時間 251 ms / 2,000 ms
コード長 1,313 bytes
コンパイル時間 2,245 ms
コンパイル使用メモリ 78,404 KB
実行使用メモリ 63,688 KB
最終ジャッジ日時 2024-07-23 09:40:58
合計ジャッジ時間 7,300 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 133 ms
54,172 KB
testcase_01 AC 216 ms
54,520 KB
testcase_02 AC 176 ms
56,276 KB
testcase_03 AC 132 ms
54,268 KB
testcase_04 AC 131 ms
54,184 KB
testcase_05 AC 131 ms
54,012 KB
testcase_06 AC 175 ms
56,148 KB
testcase_07 AC 176 ms
56,300 KB
testcase_08 AC 186 ms
56,520 KB
testcase_09 AC 160 ms
54,156 KB
testcase_10 AC 184 ms
56,048 KB
testcase_11 AC 186 ms
56,364 KB
testcase_12 AC 160 ms
54,220 KB
testcase_13 AC 194 ms
56,668 KB
testcase_14 AC 144 ms
54,052 KB
testcase_15 AC 223 ms
57,256 KB
testcase_16 AC 177 ms
56,336 KB
testcase_17 AC 182 ms
56,264 KB
testcase_18 AC 194 ms
63,688 KB
testcase_19 AC 251 ms
56,864 KB
testcase_20 AC 251 ms
56,904 KB
testcase_21 AC 234 ms
57,324 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        int left = sc.nextInt();
        int right = sc.nextInt();
        UnionFindTree uft = new UnionFindTree(right + 1);
        for (int i = left; i <= right; i++) {
            for  (int j = 2; j * i <= right; j++) {
                uft.unite(i, i * j);
            }
        }
        HashSet<Integer> set = new HashSet<>();
        for (int i = left; i <= right; i++) {
            set.add(uft.find(i));
        }
       System.out.println(set.size() - 1);
    }
    
    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(y)] = find(x);
            }
        }
    }
} 
0