結果

問題 No.826 連絡網
ユーザー neko_the_shadowneko_the_shadow
提出日時 2019-05-07 12:00:51
言語 Java21
(openjdk 21)
結果
AC  
実行時間 383 ms / 2,000 ms
コード長 1,427 bytes
コンパイル時間 4,532 ms
コンパイル使用メモリ 78,176 KB
実行使用メモリ 68,548 KB
最終ジャッジ日時 2024-11-24 02:38:58
合計ジャッジ時間 12,834 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 131 ms
41,180 KB
testcase_01 AC 120 ms
40,280 KB
testcase_02 AC 135 ms
41,084 KB
testcase_03 AC 141 ms
41,600 KB
testcase_04 AC 143 ms
41,296 KB
testcase_05 AC 127 ms
41,224 KB
testcase_06 AC 126 ms
40,916 KB
testcase_07 AC 141 ms
41,340 KB
testcase_08 AC 136 ms
41,424 KB
testcase_09 AC 145 ms
41,488 KB
testcase_10 AC 137 ms
41,096 KB
testcase_11 AC 142 ms
41,468 KB
testcase_12 AC 310 ms
61,680 KB
testcase_13 AC 225 ms
49,144 KB
testcase_14 AC 284 ms
56,668 KB
testcase_15 AC 163 ms
42,356 KB
testcase_16 AC 232 ms
51,292 KB
testcase_17 AC 224 ms
49,068 KB
testcase_18 AC 203 ms
47,396 KB
testcase_19 AC 352 ms
64,208 KB
testcase_20 AC 355 ms
63,864 KB
testcase_21 AC 149 ms
41,744 KB
testcase_22 AC 231 ms
49,496 KB
testcase_23 AC 245 ms
52,232 KB
testcase_24 AC 198 ms
45,724 KB
testcase_25 AC 383 ms
68,392 KB
testcase_26 AC 201 ms
46,732 KB
testcase_27 AC 315 ms
61,768 KB
testcase_28 AC 278 ms
57,620 KB
testcase_29 AC 229 ms
49,064 KB
testcase_30 AC 380 ms
68,548 KB
testcase_31 AC 241 ms
50,756 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Arrays;
import java.util.Scanner;
import java.util.stream.IntStream;

public class Main {
    public static void main(String[] args) {
        Scanner stdin = new Scanner(System.in);
        int n = stdin.nextInt();
        int p = stdin.nextInt();
        Main main = new Main(n, p);
        System.out.println(main.solve());
    }
    
    private int n;
    private int p;
    
    public Main(int n, int p) {
        this.n = n;
        this.p = p;
    }
    
    public int solve() {
        UnionFind uf = new UnionFind(n);
        for (int x = 2; x <= n; x++) {
            for (int y = x + x; y <= n; y += x) {
                uf.union(x - 1, y - 1);
            }
        }
        return uf.size(p - 1);
    }
}

class UnionFind {
    
    private int[] parents;
    private int[] sizes;
    
    public UnionFind(int n) {
        parents = IntStream.range(0, n).toArray();
        sizes = new int[n];
        Arrays.fill(sizes, 1);
    }
    
    public void union(int x, int y) {
        x = find(x);
        y = find(y);
        
        if (x != y) {
            sizes[y] += sizes[x];
            parents[x] = y;
        }
    }
    
    public int find(int x) {
        if (parents[x] == x) {
            return x;
        } else {
            parents[x] = find(parents[x]);
            return parents[x];
        }
    }
    
    public int size(int x) {
        return sizes[find(x)];
    }
}
0