結果

問題 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
コンパイル時間 314 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 55,468 KB
最終ジャッジ日時 2024-06-01 19:11:09
合計ジャッジ時間 49,166 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 25 ms
10,880 KB
testcase_01 RE -
testcase_02 AC 25 ms
10,752 KB
testcase_03 RE -
testcase_04 AC 1,207 ms
48,708 KB
testcase_05 AC 993 ms
43,020 KB
testcase_06 RE -
testcase_07 AC 165 ms
16,768 KB
testcase_08 AC 947 ms
42,216 KB
testcase_09 AC 1,087 ms
44,860 KB
testcase_10 AC 1,009 ms
38,168 KB
testcase_11 AC 724 ms
36,764 KB
testcase_12 AC 691 ms
34,636 KB
testcase_13 RE -
testcase_14 AC 827 ms
36,140 KB
testcase_15 RE -
testcase_16 AC 921 ms
38,616 KB
testcase_17 RE -
testcase_18 RE -
testcase_19 AC 1,312 ms
52,312 KB
testcase_20 AC 240 ms
20,048 KB
testcase_21 AC 592 ms
32,564 KB
testcase_22 AC 868 ms
37,592 KB
testcase_23 AC 891 ms
41,804 KB
testcase_24 AC 1,367 ms
55,468 KB
testcase_25 AC 1,371 ms
55,340 KB
testcase_26 AC 1,433 ms
55,336 KB
testcase_27 AC 1,434 ms
55,348 KB
testcase_28 AC 1,420 ms
55,404 KB
testcase_29 AC 1,420 ms
55,344 KB
testcase_30 AC 1,444 ms
55,332 KB
testcase_31 AC 1,453 ms
55,280 KB
testcase_32 AC 1,431 ms
55,340 KB
testcase_33 AC 1,439 ms
55,344 KB
testcase_34 AC 1,470 ms
52,108 KB
testcase_35 AC 1,522 ms
51,020 KB
testcase_36 AC 1,518 ms
50,916 KB
testcase_37 AC 1,586 ms
50,116 KB
testcase_38 AC 1,553 ms
51,720 KB
testcase_39 AC 1,501 ms
46,852 KB
testcase_40 AC 1,516 ms
46,808 KB
testcase_41 AC 1,486 ms
46,848 KB
testcase_42 AC 1,471 ms
46,852 KB
testcase_43 AC 1,512 ms
46,848 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