結果

問題 No.826 連絡網
ユーザー 👑 KazunKazun
提出日時 2021-02-10 21:07:44
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 2,314 bytes
コンパイル時間 437 ms
コンパイル使用メモリ 82,132 KB
実行使用メモリ 89,088 KB
最終ジャッジ日時 2024-07-08 08:27:17
合計ジャッジ時間 17,026 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
57,600 KB
testcase_01 AC 41 ms
52,352 KB
testcase_02 AC 53 ms
63,616 KB
testcase_03 AC 85 ms
76,160 KB
testcase_04 AC 91 ms
75,960 KB
testcase_05 AC 76 ms
75,904 KB
testcase_06 AC 78 ms
75,868 KB
testcase_07 AC 87 ms
75,904 KB
testcase_08 AC 80 ms
76,072 KB
testcase_09 AC 86 ms
75,668 KB
testcase_10 AC 65 ms
75,648 KB
testcase_11 AC 85 ms
75,904 KB
testcase_12 TLE -
testcase_13 AC 936 ms
80,384 KB
testcase_14 AC 1,855 ms
84,480 KB
testcase_15 AC 240 ms
76,928 KB
testcase_16 AC 1,209 ms
81,536 KB
testcase_17 AC 938 ms
80,512 KB
testcase_18 AC 732 ms
79,744 KB
testcase_19 TLE -
testcase_20 TLE -
testcase_21 AC 107 ms
76,288 KB
testcase_22 AC 975 ms
80,640 KB
testcase_23 AC 1,253 ms
81,920 KB
testcase_24 AC 535 ms
78,592 KB
testcase_25 TLE -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
testcase_31 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

class Union_Find():
    def __init__(self,N):
        """0,1,...,n-1を要素として初期化する.

        N:要素数
        """
        self.n=N
        self.parents=[-1]*N
        self.rank=[0]*N

    def find(self, x):
        """要素xの属している族を調べる.

        x:要素
        """
        V=[]
        while self.parents[x]>=0:
            V.append(x)
            x=self.parents[x]

        for v in V:
            self.parents[v]=x
        return x

    def union(self, x, y):
        """要素x,yを同一視する.

        x,y:要素
        """
        x=self.find(x)
        y=self.find(y)

        if x==y:
            return

        if self.rank[x]<self.rank[y]:
            x,y=y,x

        self.parents[x]+=self.parents[y]
        self.parents[y]=x

        if self.rank[x]==self.rank[y]:
            self.rank[x]+=1

    def size(self, x):
        """要素xの属している要素の数.

        x:要素
        """
        return -self.parents[self.find(x)]

    def same(self, x, y):
        """要素x,yは同一視されているか?

        x,y:要素
        """
        return self.find(x) == self.find(y)

    def members(self, x):
        """要素xが属している族の要素.
        ※族の要素の個数が欲しいときはsizeを使うこと!!

        x:要素
        """
        root = self.find(x)
        return [i for i in range(self.n) if self.find(i) == root]

    def roots(self):
        """族の名前のリスト
        """
        return [i for i, x in enumerate(self.parents) if x < 0]

    def group_count(self):
        """族の個数
        """
        return len(self.roots())

    def all_group_members(self):
        """全ての族の出力
        """
        X={r:[] for r in self.roots()}
        for k in range(self.n):
            X[self.find(k)].append(k)
        return X

    def refresh(self):
        for i in range(self.n):
            _=self.find(i)

    def __str__(self):
        return '\n'.join('{}: {}'.format(r, self.members(r)) for r in self.roots())

    def __repr__(self):
        return self.__str__()
#================================================
N,P=map(int,input().split())
U=Union_Find(N+1)
for i in range(2,N):
    j=2*i
    while j<=N:
        U.union(i,j)
        j+=i

print(U.size(P))
0