結果

問題 No.1059 素敵な集合
ユーザー tentententen
提出日時 2023-04-11 08:59:47
言語 Java21
(openjdk 21)
結果
AC  
実行時間 126 ms / 2,000 ms
コード長 2,677 bytes
コンパイル時間 2,528 ms
コンパイル使用メモリ 89,440 KB
実行使用メモリ 39,792 KB
最終ジャッジ日時 2024-10-07 00:31:37
合計ジャッジ時間 5,424 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 53 ms
36,968 KB
testcase_01 AC 120 ms
39,620 KB
testcase_02 AC 86 ms
38,152 KB
testcase_03 AC 51 ms
37,172 KB
testcase_04 AC 52 ms
36,808 KB
testcase_05 AC 52 ms
37,052 KB
testcase_06 AC 76 ms
38,800 KB
testcase_07 AC 85 ms
38,312 KB
testcase_08 AC 89 ms
38,672 KB
testcase_09 AC 66 ms
37,340 KB
testcase_10 AC 89 ms
38,552 KB
testcase_11 AC 87 ms
38,764 KB
testcase_12 AC 78 ms
38,244 KB
testcase_13 AC 102 ms
38,976 KB
testcase_14 AC 59 ms
36,976 KB
testcase_15 AC 110 ms
39,504 KB
testcase_16 AC 86 ms
38,376 KB
testcase_17 AC 86 ms
38,668 KB
testcase_18 AC 84 ms
38,620 KB
testcase_19 AC 126 ms
39,616 KB
testcase_20 AC 121 ms
39,248 KB
testcase_21 AC 113 ms
39,792 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;
import java.util.*;
import java.util.stream.*;

public class Main {
    public static void main(String[] args) throws Exception {
        Scanner sc = new Scanner();
        int left = sc.nextInt();
        int right = sc.nextInt();
        UnionFindTree uft = new UnionFindTree(right - left + 1);
        for (int i = left; i <= right; i++) {
            for (int j = 2; j * i <= right; j++) {
                uft.unite(i - left, i * j - left);
            }
        }
        int ans = 0;
        for (int i = left; i < right; i++) {
            if (!uft.same(i - left, i - left + 1)) {
                ans++;
                uft.unite(i - left, i - left + 1);
            }
        }
        System.out.println(ans);
    }
    
    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);
            }
        }
    }
}
class Utilities {
    static String arrayToLineString(Object[] arr) {
        return Arrays.stream(arr).map(x -> x.toString()).collect(Collectors.joining("\n"));
    }
    
    static String arrayToLineString(int[] arr) {
        return String.join("\n", Arrays.stream(arr).mapToObj(String::valueOf).toArray(String[]::new));
    }
}
class Scanner {
    BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
    StringTokenizer st = new StringTokenizer("");
    StringBuilder sb = new StringBuilder();
    
    public Scanner() throws Exception {
        
    }
    
    public int nextInt() throws Exception {
        return Integer.parseInt(next());
    }
    
    public long nextLong() throws Exception {
        return Long.parseLong(next());
    }
    
    public double nextDouble() throws Exception {
        return Double.parseDouble(next());
    }
    
    public int[] nextIntArray() throws Exception {
        return Stream.of(br.readLine().split(" ")).mapToInt(Integer::parseInt).toArray();
    }
    
    public String next() throws Exception {
        while (!st.hasMoreTokens()) {
            st = new StringTokenizer(br.readLine());
        }
        return st.nextToken();
    }
    
}
0