結果

問題 No.2100 [Cherry Alpha C] Two-way Steps
ユーザー 👑 p-adicp-adic
提出日時 2024-06-01 07:44:47
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,219 ms / 2,000 ms
コード長 472 bytes
コンパイル時間 350 ms
コンパイル使用メモリ 82,036 KB
実行使用メモリ 117,620 KB
最終ジャッジ日時 2024-06-01 07:45:31
合計ジャッジ時間 38,355 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
53,580 KB
testcase_01 AC 37 ms
53,496 KB
testcase_02 AC 37 ms
52,576 KB
testcase_03 AC 37 ms
52,336 KB
testcase_04 AC 908 ms
110,648 KB
testcase_05 AC 795 ms
105,652 KB
testcase_06 AC 142 ms
80,116 KB
testcase_07 AC 169 ms
81,800 KB
testcase_08 AC 712 ms
105,744 KB
testcase_09 AC 874 ms
107,400 KB
testcase_10 AC 824 ms
102,636 KB
testcase_11 AC 598 ms
100,148 KB
testcase_12 AC 603 ms
98,276 KB
testcase_13 AC 344 ms
91,572 KB
testcase_14 AC 709 ms
100,832 KB
testcase_15 AC 419 ms
94,324 KB
testcase_16 AC 770 ms
102,028 KB
testcase_17 AC 183 ms
87,308 KB
testcase_18 AC 370 ms
92,440 KB
testcase_19 AC 995 ms
114,616 KB
testcase_20 AC 226 ms
84,500 KB
testcase_21 AC 502 ms
96,340 KB
testcase_22 AC 752 ms
101,548 KB
testcase_23 AC 734 ms
104,380 KB
testcase_24 AC 1,094 ms
117,108 KB
testcase_25 AC 1,070 ms
117,600 KB
testcase_26 AC 1,082 ms
117,620 KB
testcase_27 AC 1,065 ms
117,260 KB
testcase_28 AC 1,083 ms
117,240 KB
testcase_29 AC 1,059 ms
117,492 KB
testcase_30 AC 1,046 ms
117,252 KB
testcase_31 AC 1,064 ms
116,876 KB
testcase_32 AC 1,028 ms
117,268 KB
testcase_33 AC 1,056 ms
117,112 KB
testcase_34 AC 1,126 ms
114,692 KB
testcase_35 AC 1,161 ms
115,040 KB
testcase_36 AC 1,156 ms
115,212 KB
testcase_37 AC 1,219 ms
115,136 KB
testcase_38 AC 1,189 ms
114,908 KB
testcase_39 AC 1,156 ms
114,116 KB
testcase_40 AC 1,190 ms
113,924 KB
testcase_41 AC 1,158 ms
114,008 KB
testcase_42 AC 1,182 ms
114,196 KB
testcase_43 AC 1,184 ms
114,084 KB
testcase_44 AC 219 ms
103,448 KB
testcase_45 AC 221 ms
103,824 KB
testcase_46 AC 215 ms
103,596 KB
testcase_47 AC 210 ms
103,616 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

P,U=print,max
def J():
	return map(int,input().split())
N,M=J()
H=list(J())
R=range(M)
Z,W=[[] for j in R],[[] for j in R]
for j in R:
	X,Y=J()
	X-=1
	Y-=1
	Z[j],W[j]=[X,Y],[Y,X]
Z.sort()
W.sort(reverse=1)
C,D,E,F=[-1]*N,[-1]*N,[-1]*N,[-1]*N
N-=1
C[0]=D[N]=0
for c,e,z in [C,E,Z],[D,F,W]:
	for x in z:
		X,Y=x[0],x[1]
		h=H[Y]-H[X]
		if c[X]>=0:
			if h>0:e[Y]=U(e[Y],c[X]+h)
			else:c[Y]=U(c[Y],c[X])
		if e[X]>=0 and h<0:c[Y]=U(c[Y],e[X])
P(U(C[N],E[N]))
P(U(D[0],F[0]))
0