結果

問題 No.2100 [Cherry Alpha C] Two-way Steps
ユーザー 👑 p-adicp-adic
提出日時 2023-05-22 12:21:09
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 1,682 ms / 2,000 ms
コード長 472 bytes
コンパイル時間 103 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 53,424 KB
最終ジャッジ日時 2024-12-21 10:20:07
合計ジャッジ時間 52,192 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 27 ms
10,880 KB
testcase_01 AC 27 ms
10,880 KB
testcase_02 AC 29 ms
10,752 KB
testcase_03 AC 31 ms
10,880 KB
testcase_04 AC 1,229 ms
45,764 KB
testcase_05 AC 994 ms
40,460 KB
testcase_06 AC 130 ms
15,360 KB
testcase_07 AC 165 ms
16,896 KB
testcase_08 AC 1,019 ms
41,700 KB
testcase_09 AC 1,121 ms
41,404 KB
testcase_10 AC 1,062 ms
34,964 KB
testcase_11 AC 798 ms
35,352 KB
testcase_12 AC 708 ms
32,068 KB
testcase_13 AC 439 ms
28,036 KB
testcase_14 AC 838 ms
33,328 KB
testcase_15 AC 602 ms
30,400 KB
testcase_16 AC 952 ms
35,416 KB
testcase_17 AC 208 ms
20,956 KB
testcase_18 AC 530 ms
28,596 KB
testcase_19 AC 1,409 ms
49,884 KB
testcase_20 AC 268 ms
19,532 KB
testcase_21 AC 651 ms
30,384 KB
testcase_22 AC 878 ms
34,392 KB
testcase_23 AC 974 ms
40,400 KB
testcase_24 AC 1,549 ms
53,424 KB
testcase_25 AC 1,490 ms
53,356 KB
testcase_26 AC 1,456 ms
53,420 KB
testcase_27 AC 1,475 ms
53,300 KB
testcase_28 AC 1,549 ms
53,296 KB
testcase_29 AC 1,554 ms
53,296 KB
testcase_30 AC 1,489 ms
53,236 KB
testcase_31 AC 1,473 ms
53,232 KB
testcase_32 AC 1,516 ms
53,420 KB
testcase_33 AC 1,532 ms
53,296 KB
testcase_34 AC 1,605 ms
47,628 KB
testcase_35 AC 1,652 ms
46,544 KB
testcase_36 AC 1,595 ms
46,308 KB
testcase_37 AC 1,638 ms
45,600 KB
testcase_38 AC 1,682 ms
47,248 KB
testcase_39 AC 1,671 ms
42,608 KB
testcase_40 AC 1,603 ms
42,456 KB
testcase_41 AC 1,579 ms
42,456 KB
testcase_42 AC 1,602 ms
42,604 KB
testcase_43 AC 1,561 ms
42,456 KB
testcase_44 AC 660 ms
45,044 KB
testcase_45 AC 669 ms
44,916 KB
testcase_46 AC 603 ms
41,928 KB
testcase_47 AC 590 ms
41,848 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