結果

問題 No.2912 0次パーシステントホモロジー
ユーザー 👑 p-adicp-adic
提出日時 2024-07-22 21:22:05
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 741 ms / 2,000 ms
コード長 435 bytes
コンパイル時間 190 ms
コンパイル使用メモリ 81,864 KB
実行使用メモリ 125,520 KB
最終ジャッジ日時 2024-10-04 20:50:41
合計ジャッジ時間 5,290 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
52,096 KB
testcase_01 AC 35 ms
52,608 KB
testcase_02 AC 34 ms
51,968 KB
testcase_03 AC 33 ms
52,224 KB
testcase_04 AC 32 ms
52,096 KB
testcase_05 AC 34 ms
52,608 KB
testcase_06 AC 33 ms
52,608 KB
testcase_07 AC 34 ms
52,352 KB
testcase_08 AC 35 ms
52,224 KB
testcase_09 AC 36 ms
52,224 KB
testcase_10 AC 34 ms
51,968 KB
testcase_11 AC 33 ms
52,480 KB
testcase_12 AC 33 ms
52,096 KB
testcase_13 AC 33 ms
52,480 KB
testcase_14 AC 34 ms
52,224 KB
testcase_15 AC 72 ms
77,440 KB
testcase_16 AC 336 ms
105,140 KB
testcase_17 AC 287 ms
91,648 KB
testcase_18 AC 419 ms
96,712 KB
testcase_19 AC 721 ms
125,520 KB
testcase_20 AC 741 ms
125,396 KB
testcase_21 AC 559 ms
125,520 KB
testcase_22 AC 504 ms
125,504 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