結果

問題 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)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 472 bytes
コンパイル時間 102 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 53,300 KB
最終ジャッジ日時 2024-06-01 06:30:21
合計ジャッジ時間 53,800 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
11,008 KB
testcase_01 AC 31 ms
10,752 KB
testcase_02 AC 34 ms
10,752 KB
testcase_03 AC 30 ms
10,880 KB
testcase_04 AC 1,463 ms
45,636 KB
testcase_05 AC 1,246 ms
40,332 KB
testcase_06 AC 149 ms
15,360 KB
testcase_07 AC 191 ms
16,896 KB
testcase_08 AC 1,197 ms
41,952 KB
testcase_09 AC 1,314 ms
41,528 KB
testcase_10 AC 1,248 ms
34,840 KB
testcase_11 AC 952 ms
35,452 KB
testcase_12 AC 891 ms
32,068 KB
testcase_13 AC 533 ms
28,164 KB
testcase_14 AC 991 ms
33,456 KB
testcase_15 AC 661 ms
30,444 KB
testcase_16 AC 1,121 ms
35,652 KB
testcase_17 AC 235 ms
20,748 KB
testcase_18 AC 595 ms
28,588 KB
testcase_19 AC 1,627 ms
50,004 KB
testcase_20 AC 296 ms
19,528 KB
testcase_21 AC 766 ms
30,512 KB
testcase_22 AC 1,066 ms
34,648 KB
testcase_23 AC 1,140 ms
40,268 KB
testcase_24 AC 1,747 ms
53,100 KB
testcase_25 AC 1,782 ms
53,296 KB
testcase_26 AC 1,783 ms
53,032 KB
testcase_27 AC 1,768 ms
53,300 KB
testcase_28 AC 1,743 ms
53,040 KB
testcase_29 AC 1,747 ms
53,296 KB
testcase_30 AC 1,758 ms
53,164 KB
testcase_31 AC 1,772 ms
53,232 KB
testcase_32 AC 1,803 ms
53,040 KB
testcase_33 AC 1,813 ms
53,104 KB
testcase_34 AC 1,871 ms
47,496 KB
testcase_35 AC 1,947 ms
46,284 KB
testcase_36 TLE -
testcase_37 AC 1,868 ms
45,732 KB
testcase_38 AC 1,956 ms
47,240 KB
testcase_39 AC 1,871 ms
42,484 KB
testcase_40 AC 1,920 ms
42,584 KB
testcase_41 AC 1,841 ms
42,452 KB
testcase_42 AC 1,872 ms
42,608 KB
testcase_43 AC 1,833 ms
42,580 KB
testcase_44 AC 731 ms
45,148 KB
testcase_45 AC 713 ms
45,300 KB
testcase_46 AC 649 ms
41,928 KB
testcase_47 AC 652 ms
41,976 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