結果

問題 No.2100 [Cherry Alpha C] Two-way Steps
ユーザー AkariAkari
提出日時 2022-10-14 22:24:51
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 814 ms / 2,000 ms
コード長 892 bytes
コンパイル時間 325 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 54,464 KB
最終ジャッジ日時 2024-06-26 15:43:49
合計ジャッジ時間 25,227 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 27 ms
10,880 KB
testcase_01 AC 27 ms
10,752 KB
testcase_02 AC 26 ms
10,752 KB
testcase_03 AC 25 ms
10,624 KB
testcase_04 AC 583 ms
40,228 KB
testcase_05 AC 458 ms
32,912 KB
testcase_06 AC 91 ms
16,512 KB
testcase_07 AC 107 ms
18,884 KB
testcase_08 AC 605 ms
46,580 KB
testcase_09 AC 452 ms
30,464 KB
testcase_10 AC 409 ms
19,968 KB
testcase_11 AC 416 ms
34,932 KB
testcase_12 AC 314 ms
25,480 KB
testcase_13 AC 347 ms
37,280 KB
testcase_14 AC 320 ms
21,888 KB
testcase_15 AC 376 ms
36,608 KB
testcase_16 AC 339 ms
22,912 KB
testcase_17 AC 246 ms
32,944 KB
testcase_18 AC 367 ms
37,644 KB
testcase_19 AC 694 ms
47,028 KB
testcase_20 AC 147 ms
19,412 KB
testcase_21 AC 303 ms
25,848 KB
testcase_22 AC 338 ms
22,528 KB
testcase_23 AC 544 ms
41,580 KB
testcase_24 AC 775 ms
52,280 KB
testcase_25 AC 779 ms
52,396 KB
testcase_26 AC 768 ms
52,384 KB
testcase_27 AC 783 ms
52,272 KB
testcase_28 AC 788 ms
52,280 KB
testcase_29 AC 783 ms
52,280 KB
testcase_30 AC 814 ms
52,272 KB
testcase_31 AC 787 ms
52,388 KB
testcase_32 AC 781 ms
52,392 KB
testcase_33 AC 785 ms
52,252 KB
testcase_34 AC 576 ms
26,624 KB
testcase_35 AC 578 ms
24,576 KB
testcase_36 AC 576 ms
24,320 KB
testcase_37 AC 569 ms
23,680 KB
testcase_38 AC 580 ms
25,728 KB
testcase_39 AC 565 ms
21,120 KB
testcase_40 AC 572 ms
21,376 KB
testcase_41 AC 564 ms
21,376 KB
testcase_42 AC 560 ms
21,248 KB
testcase_43 AC 559 ms
21,248 KB
testcase_44 AC 530 ms
54,464 KB
testcase_45 AC 532 ms
54,336 KB
testcase_46 AC 498 ms
51,312 KB
testcase_47 AC 514 ms
51,180 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys



def solve(H, g):
    n = len(H)
    dp = [[-1] * 2 for _ in range(n)]
    dp[0] = [0, 0]
    for x in range(n):
        hx = H[x]
        for y in g[x]:
            hy = H[y]
            up = 1 if hy > hx else 0
            d = max(0, hy - hx)
            for i in range(2):
                if dp[x][i] == -1: continue
                if i == 1 and up: continue
                dp[y][up] = max(dp[y][up], dp[x][i] + d)
    return max(dp[-1])




def main():
    input = sys.stdin.readline
    n, m = map(int, input().split())
    H = list(map(int, input().split()))
    g1 = [[] for _ in range(n)]
    g2 = [[] for _ in range(n)]
    n2 = n - 1
    for _ in range(m):
        x, y = map(lambda x: int(x) - 1, input().split())
        g1[x].append(y)
        g2[n2 - y].append(n2 - x)
    print(solve(H, g1))
    print(solve(H[::-1], g2))



if __name__ == '__main__':
    main()
0