結果
問題 | No.1059 素敵な集合 |
ユーザー | ks2m |
提出日時 | 2020-05-22 22:26:07 |
言語 | Java (openjdk 23) |
結果 |
AC
|
実行時間 | 205 ms / 2,000 ms |
コード長 | 1,136 bytes |
コンパイル時間 | 2,135 ms |
コンパイル使用メモリ | 77,668 KB |
実行使用メモリ | 65,356 KB |
最終ジャッジ日時 | 2024-07-23 09:31:15 |
合計ジャッジ時間 | 6,641 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 19 |
ソースコード
import java.util.Scanner; public class Main { public static void main(String[] args) throws Exception { Scanner sc = new Scanner(System.in); int l = sc.nextInt(); int r = sc.nextInt(); sc.close(); UnionFind uf = new UnionFind(r + 1); for (int i = l; i <= r; i++) { for (int j = 2; i * j <= r; j++) { uf.union(i, i * j); } } System.out.println(uf.num - l - 1); } 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)]; } } }