結果

問題 No.2914 正閉路検出
ユーザー 👑 p-adicp-adic
提出日時 2024-01-03 10:56:11
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 1,743 ms / 2,000 ms
コード長 719 bytes
コンパイル時間 259 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 69,888 KB
最終ジャッジ日時 2024-07-19 18:49:07
合計ジャッジ時間 39,011 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
10,752 KB
testcase_01 AC 32 ms
10,880 KB
testcase_02 AC 31 ms
10,880 KB
testcase_03 AC 32 ms
10,880 KB
testcase_04 AC 32 ms
10,880 KB
testcase_05 AC 31 ms
10,752 KB
testcase_06 AC 31 ms
10,880 KB
testcase_07 AC 32 ms
10,752 KB
testcase_08 AC 31 ms
10,880 KB
testcase_09 AC 33 ms
10,880 KB
testcase_10 AC 33 ms
10,880 KB
testcase_11 AC 32 ms
10,880 KB
testcase_12 AC 32 ms
11,008 KB
testcase_13 AC 31 ms
11,008 KB
testcase_14 AC 30 ms
10,752 KB
testcase_15 AC 31 ms
10,880 KB
testcase_16 AC 31 ms
10,880 KB
testcase_17 AC 30 ms
10,880 KB
testcase_18 AC 31 ms
10,752 KB
testcase_19 AC 219 ms
20,992 KB
testcase_20 AC 462 ms
34,304 KB
testcase_21 AC 129 ms
16,640 KB
testcase_22 AC 564 ms
39,680 KB
testcase_23 AC 388 ms
30,848 KB
testcase_24 AC 679 ms
44,928 KB
testcase_25 AC 71 ms
13,056 KB
testcase_26 AC 104 ms
14,976 KB
testcase_27 AC 810 ms
50,176 KB
testcase_28 AC 940 ms
52,992 KB
testcase_29 AC 1,428 ms
65,152 KB
testcase_30 AC 182 ms
27,520 KB
testcase_31 AC 804 ms
50,176 KB
testcase_32 AC 979 ms
52,864 KB
testcase_33 AC 187 ms
28,288 KB
testcase_34 AC 1,743 ms
66,560 KB
testcase_35 AC 1,477 ms
66,560 KB
testcase_36 AC 1,575 ms
66,432 KB
testcase_37 AC 1,103 ms
69,888 KB
testcase_38 AC 849 ms
64,000 KB
testcase_39 AC 744 ms
48,256 KB
testcase_40 AC 1,460 ms
67,484 KB
testcase_41 AC 962 ms
54,680 KB
testcase_42 AC 1,454 ms
69,332 KB
testcase_43 AC 1,426 ms
66,944 KB
testcase_44 AC 770 ms
47,104 KB
testcase_45 AC 1,268 ms
64,128 KB
testcase_46 AC 1,250 ms
63,104 KB
testcase_47 AC 1,185 ms
60,544 KB
testcase_48 AC 891 ms
50,048 KB
testcase_49 AC 1,469 ms
65,920 KB
testcase_50 AC 1,188 ms
60,800 KB
testcase_51 AC 849 ms
63,488 KB
testcase_52 AC 876 ms
64,128 KB
testcase_53 AC 847 ms
64,256 KB
testcase_54 AC 860 ms
64,384 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.py:34: SyntaxWarning: invalid decimal literal
  exit(O(*(P[-1::-1]if W<0else P)))

ソースコード

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