結果

問題 No.2100 [Cherry Alpha C] Two-way Steps
ユーザー AkariAkari
提出日時 2022-10-14 22:20:28
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 892 bytes
コンパイル時間 183 ms
コンパイル使用メモリ 82,256 KB
実行使用メモリ 117,148 KB
最終ジャッジ日時 2024-06-26 15:23:24
合計ジャッジ時間 12,307 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
51,968 KB
testcase_01 AC 41 ms
51,968 KB
testcase_02 AC 41 ms
51,968 KB
testcase_03 AC 40 ms
52,480 KB
testcase_04 AC 303 ms
101,972 KB
testcase_05 AC 228 ms
94,960 KB
testcase_06 AC 91 ms
78,980 KB
testcase_07 AC 124 ms
81,920 KB
testcase_08 AC 280 ms
102,584 KB
testcase_09 WA -
testcase_10 WA -
testcase_11 AC 214 ms
93,184 KB
testcase_12 WA -
testcase_13 AC 181 ms
96,136 KB
testcase_14 WA -
testcase_15 AC 224 ms
100,960 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 AC 183 ms
96,268 KB
testcase_19 AC 327 ms
108,900 KB
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 AC 265 ms
104,712 KB
testcase_24 AC 360 ms
113,572 KB
testcase_25 WA -
testcase_26 AC 355 ms
113,460 KB
testcase_27 WA -
testcase_28 AC 353 ms
113,336 KB
testcase_29 AC 361 ms
113,508 KB
testcase_30 AC 359 ms
113,516 KB
testcase_31 AC 345 ms
113,596 KB
testcase_32 AC 342 ms
113,508 KB
testcase_33 WA -
testcase_34 WA -
testcase_35 WA -
testcase_36 WA -
testcase_37 WA -
testcase_38 WA -
testcase_39 AC 150 ms
82,560 KB
testcase_40 AC 137 ms
82,816 KB
testcase_41 AC 153 ms
82,816 KB
testcase_42 AC 147 ms
82,560 KB
testcase_43 AC 156 ms
82,560 KB
testcase_44 AC 179 ms
115,904 KB
testcase_45 AC 180 ms
115,132 KB
testcase_46 AC 179 ms
116,800 KB
testcase_47 AC 178 ms
117,148 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], g1))



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