結果

問題 No.2100 [Cherry Alpha C] Two-way Steps
ユーザー 👑 p-adicp-adic
提出日時 2023-05-22 12:17:13
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
RE  
実行時間 -
コード長 472 bytes
コンパイル時間 201 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 55,472 KB
最終ジャッジ日時 2024-12-22 06:37:25
合計ジャッジ時間 50,858 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 27 ms
10,880 KB
testcase_01 RE -
testcase_02 AC 27 ms
10,880 KB
testcase_03 RE -
testcase_04 AC 1,219 ms
48,552 KB
testcase_05 AC 986 ms
42,892 KB
testcase_06 RE -
testcase_07 AC 161 ms
16,768 KB
testcase_08 AC 961 ms
42,084 KB
testcase_09 AC 1,083 ms
44,708 KB
testcase_10 AC 1,041 ms
38,292 KB
testcase_11 AC 767 ms
36,640 KB
testcase_12 AC 714 ms
34,380 KB
testcase_13 RE -
testcase_14 AC 827 ms
36,012 KB
testcase_15 RE -
testcase_16 AC 912 ms
38,484 KB
testcase_17 RE -
testcase_18 RE -
testcase_19 AC 1,346 ms
52,304 KB
testcase_20 AC 244 ms
19,920 KB
testcase_21 AC 631 ms
32,440 KB
testcase_22 AC 871 ms
37,460 KB
testcase_23 AC 938 ms
41,680 KB
testcase_24 AC 1,458 ms
55,472 KB
testcase_25 AC 1,469 ms
55,336 KB
testcase_26 AC 1,516 ms
55,216 KB
testcase_27 AC 1,500 ms
55,156 KB
testcase_28 AC 1,488 ms
55,264 KB
testcase_29 AC 1,460 ms
55,344 KB
testcase_30 AC 1,466 ms
55,284 KB
testcase_31 AC 1,452 ms
55,212 KB
testcase_32 AC 1,447 ms
55,216 KB
testcase_33 AC 1,491 ms
55,104 KB
testcase_34 AC 1,582 ms
51,980 KB
testcase_35 AC 1,583 ms
50,900 KB
testcase_36 AC 1,639 ms
50,788 KB
testcase_37 AC 1,799 ms
50,120 KB
testcase_38 AC 1,600 ms
51,724 KB
testcase_39 AC 1,570 ms
46,836 KB
testcase_40 AC 1,570 ms
46,724 KB
testcase_41 AC 1,512 ms
46,852 KB
testcase_42 AC 1,578 ms
46,980 KB
testcase_43 AC 1,514 ms
46,852 KB
testcase_44 RE -
testcase_45 RE -
testcase_46 RE -
testcase_47 RE -
権限があれば一括ダウンロードができます

ソースコード

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)
N-=1
C,D,E,F=[-1]*M,[-1]*M,[-1]*M,[-1]*M
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