結果
問題 | No.826 連絡網 |
ユーザー | 👑 Kazun |
提出日時 | 2021-02-10 21:09:39 |
言語 | PyPy3 (7.3.15) |
結果 |
TLE
|
実行時間 | - |
コード長 | 2,319 bytes |
コンパイル時間 | 141 ms |
コンパイル使用メモリ | 82,028 KB |
実行使用メモリ | 89,472 KB |
最終ジャッジ日時 | 2024-07-08 08:28:25 |
合計ジャッジ時間 | 13,237 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 39 ms
53,944 KB |
testcase_01 | AC | 41 ms
53,660 KB |
testcase_02 | AC | 53 ms
64,704 KB |
testcase_03 | AC | 79 ms
75,640 KB |
testcase_04 | AC | 81 ms
76,160 KB |
testcase_05 | AC | 72 ms
75,456 KB |
testcase_06 | AC | 75 ms
76,000 KB |
testcase_07 | AC | 81 ms
76,008 KB |
testcase_08 | AC | 73 ms
75,724 KB |
testcase_09 | AC | 79 ms
76,072 KB |
testcase_10 | AC | 62 ms
75,576 KB |
testcase_11 | AC | 76 ms
75,824 KB |
testcase_12 | AC | 1,718 ms
87,576 KB |
testcase_13 | AC | 656 ms
80,256 KB |
testcase_14 | AC | 1,278 ms
84,480 KB |
testcase_15 | AC | 181 ms
77,056 KB |
testcase_16 | AC | 858 ms
81,536 KB |
testcase_17 | AC | 667 ms
80,000 KB |
testcase_18 | AC | 511 ms
79,232 KB |
testcase_19 | TLE | - |
testcase_20 | TLE | - |
testcase_21 | AC | 99 ms
76,032 KB |
testcase_22 | AC | 694 ms
80,384 KB |
testcase_23 | AC | 933 ms
81,664 KB |
testcase_24 | AC | 393 ms
78,464 KB |
testcase_25 | TLE | - |
testcase_26 | AC | 480 ms
79,360 KB |
testcase_27 | AC | 1,881 ms
87,680 KB |
testcase_28 | AC | 1,388 ms
84,992 KB |
testcase_29 | AC | 689 ms
80,384 KB |
testcase_30 | TLE | - |
testcase_31 | AC | 825 ms
81,408 KB |
ソースコード
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//2+1): j=2*i while j<=N: U.union(i,j) j+=i print(U.size(P))