結果

問題 No.2912 0次パーシステントホモロジー
ユーザー 👑 p-adicp-adic
提出日時 2024-07-22 21:22:20
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 1,150 ms / 2,000 ms
コード長 435 bytes
コンパイル時間 334 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 51,156 KB
最終ジャッジ日時 2024-10-04 20:50:47
合計ジャッジ時間 6,945 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 25 ms
10,752 KB
testcase_01 AC 25 ms
10,624 KB
testcase_02 AC 27 ms
10,624 KB
testcase_03 AC 26 ms
10,624 KB
testcase_04 AC 25 ms
10,624 KB
testcase_05 AC 25 ms
10,752 KB
testcase_06 AC 26 ms
10,624 KB
testcase_07 AC 25 ms
10,624 KB
testcase_08 AC 25 ms
10,624 KB
testcase_09 AC 26 ms
10,752 KB
testcase_10 AC 30 ms
10,624 KB
testcase_11 AC 27 ms
10,624 KB
testcase_12 AC 25 ms
10,624 KB
testcase_13 AC 25 ms
10,624 KB
testcase_14 AC 25 ms
10,624 KB
testcase_15 AC 50 ms
12,672 KB
testcase_16 AC 367 ms
30,812 KB
testcase_17 AC 345 ms
27,304 KB
testcase_18 AC 534 ms
32,928 KB
testcase_19 AC 1,136 ms
50,640 KB
testcase_20 AC 1,150 ms
51,156 KB
testcase_21 AC 992 ms
50,640 KB
testcase_22 AC 972 ms
51,096 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

I,R=input,range
J=lambda:map(int,I().split())
N,M=J()
E=[list(J())for j in R(M)]
E=sorted([w,u,v]for u,v,w in E)
T=int(I())
Q=list(J())
Q=sorted([Q[t],t]for t in R(T))
A=[0]*T
e=0
c=N
P=list(R(N))
H=[0]*N
def r(i):
	m=P[i]
	while i!=m:P[i]=i=P[m];m=P[i]
	return i
for[q,t]in Q:
	while e<M:
		w,u,v=E[e]
		if w>q:break
		else:
			u,v,e=r(u),r(v),e+1
			if H[v]<H[u]:u,v=v,u
			H[v]+=H[u]==H[v];P[u]=v;c-=u!=v
	A[t]=c
for a in A:print(a)
0