結果

問題 No.1059 素敵な集合
ユーザー htensaihtensai
提出日時 2020-05-26 11:38:31
言語 Java21
(openjdk 21)
結果
AC  
実行時間 261 ms / 2,000 ms
コード長 1,324 bytes
コンパイル時間 2,232 ms
コンパイル使用メモリ 78,332 KB
実行使用メモリ 61,812 KB
最終ジャッジ日時 2024-07-23 09:39:01
合計ジャッジ時間 6,950 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 130 ms
54,036 KB
testcase_01 AC 128 ms
53,996 KB
testcase_02 AC 179 ms
56,392 KB
testcase_03 AC 128 ms
54,104 KB
testcase_04 AC 129 ms
55,964 KB
testcase_05 AC 134 ms
54,032 KB
testcase_06 AC 173 ms
56,104 KB
testcase_07 AC 171 ms
55,968 KB
testcase_08 AC 189 ms
56,100 KB
testcase_09 AC 163 ms
54,096 KB
testcase_10 AC 189 ms
56,196 KB
testcase_11 AC 188 ms
55,732 KB
testcase_12 AC 153 ms
54,328 KB
testcase_13 AC 206 ms
56,572 KB
testcase_14 AC 148 ms
54,032 KB
testcase_15 AC 221 ms
57,092 KB
testcase_16 AC 187 ms
55,940 KB
testcase_17 AC 187 ms
56,632 KB
testcase_18 AC 179 ms
60,544 KB
testcase_19 AC 261 ms
61,812 KB
testcase_20 AC 250 ms
60,700 KB
testcase_21 AC 223 ms
57,248 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();
		if (left == 1) {
		    System.out.println(0);
		    return;
		}
		UnionFindTree uft = new UnionFindTree(right - left + 1);
		for (int i = left; i <= right / 2; i++) {
		    for (int j = 2; j * i <= right; j++) {
		        uft.unite(i - left, i * j - left);
		    }
		}
		System.out.println(uft.getCount() - 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 (parents[x] == 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);
	        }
	    }
	    
	    public int getCount() {
	        HashSet<Integer> set = new HashSet<>();
	        for (int i = 0; i < parents.length; i++) {
	            set.add(find(i));
	        }
	        return set.size();
	    }
	}
}
0