結果

問題 No.2100 [Cherry Alpha C] Two-way Steps
ユーザー lloyzlloyz
提出日時 2022-10-15 14:00:18
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 356 ms / 2,000 ms
コード長 1,326 bytes
コンパイル時間 156 ms
コンパイル使用メモリ 82,064 KB
実行使用メモリ 129,640 KB
最終ジャッジ日時 2024-06-26 19:46:20
合計ジャッジ時間 13,261 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
53,760 KB
testcase_01 AC 41 ms
53,760 KB
testcase_02 AC 43 ms
53,992 KB
testcase_03 AC 42 ms
54,016 KB
testcase_04 AC 289 ms
111,884 KB
testcase_05 AC 245 ms
99,324 KB
testcase_06 AC 99 ms
78,592 KB
testcase_07 AC 110 ms
85,504 KB
testcase_08 AC 264 ms
117,280 KB
testcase_09 AC 249 ms
95,616 KB
testcase_10 AC 199 ms
86,784 KB
testcase_11 AC 218 ms
102,624 KB
testcase_12 AC 185 ms
89,472 KB
testcase_13 AC 180 ms
103,316 KB
testcase_14 AC 224 ms
89,728 KB
testcase_15 AC 193 ms
103,008 KB
testcase_16 AC 240 ms
90,948 KB
testcase_17 AC 137 ms
95,856 KB
testcase_18 AC 182 ms
101,344 KB
testcase_19 AC 309 ms
120,312 KB
testcase_20 AC 126 ms
86,980 KB
testcase_21 AC 184 ms
91,304 KB
testcase_22 AC 230 ms
90,624 KB
testcase_23 AC 250 ms
112,848 KB
testcase_24 AC 356 ms
125,456 KB
testcase_25 AC 348 ms
125,580 KB
testcase_26 AC 345 ms
125,844 KB
testcase_27 AC 332 ms
125,708 KB
testcase_28 AC 342 ms
125,848 KB
testcase_29 AC 336 ms
125,584 KB
testcase_30 AC 333 ms
126,012 KB
testcase_31 AC 338 ms
125,696 KB
testcase_32 AC 334 ms
125,708 KB
testcase_33 AC 342 ms
125,588 KB
testcase_34 AC 285 ms
94,208 KB
testcase_35 AC 269 ms
92,544 KB
testcase_36 AC 264 ms
92,800 KB
testcase_37 AC 259 ms
92,416 KB
testcase_38 AC 290 ms
93,952 KB
testcase_39 AC 217 ms
91,264 KB
testcase_40 AC 213 ms
91,008 KB
testcase_41 AC 224 ms
90,916 KB
testcase_42 AC 216 ms
91,104 KB
testcase_43 AC 220 ms
91,596 KB
testcase_44 AC 245 ms
129,452 KB
testcase_45 AC 237 ms
129,460 KB
testcase_46 AC 218 ms
129,632 KB
testcase_47 AC 215 ms
129,640 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict
import sys
input = sys.stdin.readline

def main():
    n, m = map(int, input().split())
    H = list(map(int, input().split()))
    G = [defaultdict(list), defaultdict(list)]
    for _ in range(m):
        x, y = map(int, input().split())
        x -= 1
        y -= 1
        G[0][x].append((y, max(H[y] - H[x], 0)))
        G[1][y].append((x, max(H[x] - H[y], 0)))

    DP = [[[-1, -1] for _ in range(n)] for _ in range(2)]
    DP[0][0][0] = 0
    for i in range(n - 1):
        for j in range(2):
            if DP[0][i][j] != -1:
                for k, d in G[0][i]:
                    if d > 0:
                        if j == 0:
                            DP[0][k][1] = max(DP[0][k][1], DP[0][i][j] + d)
                    else:
                        DP[0][k][0] = max(DP[0][k][0], DP[0][i][j])
    print(max(DP[0][n - 1]))
    DP[1][n - 1][0] = 0
    for i in range(n - 1, 0, -1):
        for j in range(2):
            if DP[1][i][j] != -1:
                for k, d in G[1][i]:
                    if d > 0:
                        if j == 0:
                            DP[1][k][1] = max(DP[1][k][1], DP[1][i][j] + d)
                    else:
                        DP[1][k][0] = max(DP[1][k][0], DP[1][i][j])
    print(max(DP[1][0]))

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