結果

問題 No.2100 [Cherry Alpha C] Two-way Steps
ユーザー rlangevinrlangevin
提出日時 2023-01-15 10:41:42
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 431 ms / 2,000 ms
コード長 758 bytes
コンパイル時間 452 ms
コンパイル使用メモリ 82,536 KB
実行使用メモリ 99,568 KB
最終ジャッジ日時 2024-06-08 14:13:02
合計ジャッジ時間 15,959 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
51,712 KB
testcase_01 AC 40 ms
52,224 KB
testcase_02 AC 41 ms
52,224 KB
testcase_03 AC 42 ms
51,840 KB
testcase_04 AC 351 ms
93,292 KB
testcase_05 AC 291 ms
89,268 KB
testcase_06 AC 139 ms
79,360 KB
testcase_07 AC 149 ms
80,640 KB
testcase_08 AC 323 ms
96,512 KB
testcase_09 AC 273 ms
87,552 KB
testcase_10 AC 197 ms
81,408 KB
testcase_11 AC 277 ms
90,632 KB
testcase_12 AC 225 ms
84,352 KB
testcase_13 AC 236 ms
91,904 KB
testcase_14 AC 215 ms
82,176 KB
testcase_15 AC 248 ms
90,368 KB
testcase_16 AC 224 ms
82,944 KB
testcase_17 AC 175 ms
90,368 KB
testcase_18 AC 238 ms
92,416 KB
testcase_19 AC 381 ms
96,048 KB
testcase_20 AC 168 ms
81,920 KB
testcase_21 AC 227 ms
85,248 KB
testcase_22 AC 216 ms
82,304 KB
testcase_23 AC 319 ms
93,380 KB
testcase_24 AC 418 ms
98,624 KB
testcase_25 AC 414 ms
98,756 KB
testcase_26 AC 422 ms
99,532 KB
testcase_27 AC 411 ms
99,520 KB
testcase_28 AC 405 ms
99,156 KB
testcase_29 AC 407 ms
99,144 KB
testcase_30 AC 410 ms
99,524 KB
testcase_31 AC 410 ms
99,140 KB
testcase_32 AC 417 ms
99,528 KB
testcase_33 AC 431 ms
98,624 KB
testcase_34 AC 262 ms
85,120 KB
testcase_35 AC 246 ms
85,248 KB
testcase_36 AC 246 ms
85,376 KB
testcase_37 AC 235 ms
85,120 KB
testcase_38 AC 247 ms
84,864 KB
testcase_39 AC 202 ms
82,944 KB
testcase_40 AC 200 ms
82,816 KB
testcase_41 AC 199 ms
82,688 KB
testcase_42 AC 204 ms
82,688 KB
testcase_43 AC 206 ms
82,688 KB
testcase_44 AC 208 ms
99,568 KB
testcase_45 AC 209 ms
99,320 KB
testcase_46 AC 206 ms
99,072 KB
testcase_47 AC 206 ms
99,336 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
readline = sys.stdin.readline

def calc(h, G):
    inf = 10 ** 18
    dp0 = [-inf] * N
    dp1 = [-inf] * N
    dp0[0] = 0
    for i in range(N):
        for u in G[i]:
            if h[u] > h[i]:
                dp1[u] = max(dp1[u], dp0[i] + h[u] - h[i])
            else:
                dp0[u] = max(dp0[u], dp0[i], dp1[i])
    v = max(dp0[-1], dp1[-1])
    if v < 0:
        return -1
    else:
        return v           
    

N, M = map(int, input().split())
H = list(map(int, input().split()))
G1 = [[] for i in range(N)]
G2 = [[] for i in range(N)]
for i in range(M):
    X, Y = map(int, input().split())
    G1[X - 1].append(Y - 1)
    G2[N - Y].append(N - X)
    
ans1= calc(H, G1)
H.reverse()
ans2 = calc(H, G2)
print(ans1)
print(ans2)
0