結果

問題 No.2914 正閉路検出
ユーザー 👑 p-adicp-adic
提出日時 2024-01-03 02:05:57
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 464 ms / 2,000 ms
コード長 719 bytes
コンパイル時間 160 ms
コンパイル使用メモリ 82,688 KB
実行使用メモリ 129,024 KB
最終ジャッジ日時 2024-07-19 18:48:42
合計ジャッジ時間 12,817 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
52,224 KB
testcase_01 AC 35 ms
52,352 KB
testcase_02 AC 36 ms
52,224 KB
testcase_03 AC 36 ms
52,224 KB
testcase_04 AC 36 ms
51,840 KB
testcase_05 AC 38 ms
51,968 KB
testcase_06 AC 40 ms
51,840 KB
testcase_07 AC 39 ms
52,224 KB
testcase_08 AC 40 ms
52,352 KB
testcase_09 AC 40 ms
52,096 KB
testcase_10 AC 40 ms
51,968 KB
testcase_11 AC 36 ms
52,352 KB
testcase_12 AC 36 ms
52,480 KB
testcase_13 AC 37 ms
52,736 KB
testcase_14 AC 36 ms
52,608 KB
testcase_15 AC 42 ms
52,352 KB
testcase_16 AC 37 ms
52,224 KB
testcase_17 AC 36 ms
52,608 KB
testcase_18 AC 38 ms
52,352 KB
testcase_19 AC 107 ms
83,328 KB
testcase_20 AC 167 ms
96,256 KB
testcase_21 AC 93 ms
77,696 KB
testcase_22 AC 174 ms
97,572 KB
testcase_23 AC 153 ms
90,368 KB
testcase_24 AC 211 ms
103,600 KB
testcase_25 AC 97 ms
77,312 KB
testcase_26 AC 99 ms
77,440 KB
testcase_27 AC 241 ms
103,840 KB
testcase_28 AC 289 ms
105,468 KB
testcase_29 AC 366 ms
115,004 KB
testcase_30 AC 110 ms
83,072 KB
testcase_31 AC 219 ms
103,828 KB
testcase_32 AC 280 ms
105,972 KB
testcase_33 AC 99 ms
84,224 KB
testcase_34 AC 464 ms
120,524 KB
testcase_35 AC 435 ms
119,984 KB
testcase_36 AC 437 ms
119,916 KB
testcase_37 AC 244 ms
128,840 KB
testcase_38 AC 203 ms
113,024 KB
testcase_39 AC 221 ms
107,648 KB
testcase_40 AC 294 ms
126,848 KB
testcase_41 AC 240 ms
113,932 KB
testcase_42 AC 314 ms
129,024 KB
testcase_43 AC 302 ms
124,928 KB
testcase_44 AC 199 ms
105,856 KB
testcase_45 AC 295 ms
123,776 KB
testcase_46 AC 331 ms
122,496 KB
testcase_47 AC 259 ms
119,296 KB
testcase_48 AC 225 ms
107,264 KB
testcase_49 AC 306 ms
124,544 KB
testcase_50 AC 263 ms
119,552 KB
testcase_51 AC 232 ms
112,856 KB
testcase_52 AC 211 ms
113,732 KB
testcase_53 AC 213 ms
113,116 KB
testcase_54 AC 225 ms
113,628 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

O,R=print,range
J=lambda:map(int,input().split())
N,M=J()
D=[[]for i in R(N)]
E=[]
p,h=list(R(N)),[0]*N
w=h[:]
def r(i):
	m=p[i]
	while m!=p[m]:
		w[i]+=w[m]
		m=p[i]=p[m]
	return m
for j in R(M):
	A,B,W=map(int,input().split());A-=1;B-=1
	a,b=r(A),r(B)
	E+=[[A,B,W]]
	if a==b:
		if w[A]-w[B]!=W:
			P,S,F=[j+1],[A],[0]*N
			while F[B]<1:
				i=S.pop()
				for[e,m]in D[i]:
					if F[e]<1:
						F[e],p[e]=1,m
						S+=[e]
			while A!=B:
				m=p[B]
				P+=[m+1]
				if B==E[m][0]:B,W=E[m][1],W+E[m][2]
				else:B,W=E[m][0],W-E[m][2]
			O(len(P))
			O(A+1)
			exit(O(*(P[-1::-1]if W<0else P)))
	else:
		W=w[B]+W-w[A]
		if h[b]<h[a]:a,b,W=b,a,-W
		if h[a]==h[b]:h[b]+=1
		p[a],w[a]=b,W
	D[A]+=[[B,j]]
	D[B]+=[[A,j]]
O(-1)
0