結果

問題 No.2100 [Cherry Alpha C] Two-way Steps
ユーザー ntudantuda
提出日時 2022-10-19 22:43:25
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 417 ms / 2,000 ms
コード長 1,122 bytes
コンパイル時間 147 ms
コンパイル使用メモリ 81,940 KB
実行使用メモリ 129,192 KB
最終ジャッジ日時 2024-06-29 22:52:07
合計ジャッジ時間 13,280 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,688 KB
testcase_01 AC 32 ms
53,868 KB
testcase_02 AC 32 ms
52,696 KB
testcase_03 AC 31 ms
52,796 KB
testcase_04 AC 303 ms
115,788 KB
testcase_05 AC 241 ms
101,204 KB
testcase_06 AC 113 ms
81,804 KB
testcase_07 AC 128 ms
85,808 KB
testcase_08 AC 298 ms
119,600 KB
testcase_09 AC 242 ms
97,004 KB
testcase_10 AC 184 ms
89,540 KB
testcase_11 AC 226 ms
99,868 KB
testcase_12 AC 192 ms
91,424 KB
testcase_13 AC 198 ms
103,768 KB
testcase_14 AC 193 ms
89,936 KB
testcase_15 AC 219 ms
107,696 KB
testcase_16 AC 198 ms
90,772 KB
testcase_17 AC 153 ms
93,084 KB
testcase_18 AC 216 ms
108,168 KB
testcase_19 AC 283 ms
112,980 KB
testcase_20 AC 135 ms
84,808 KB
testcase_21 AC 204 ms
96,820 KB
testcase_22 AC 203 ms
92,788 KB
testcase_23 AC 299 ms
115,468 KB
testcase_24 AC 384 ms
128,940 KB
testcase_25 AC 417 ms
129,192 KB
testcase_26 AC 370 ms
123,932 KB
testcase_27 AC 359 ms
123,936 KB
testcase_28 AC 344 ms
124,316 KB
testcase_29 AC 339 ms
123,932 KB
testcase_30 AC 343 ms
123,964 KB
testcase_31 AC 341 ms
124,200 KB
testcase_32 AC 345 ms
124,060 KB
testcase_33 AC 371 ms
128,668 KB
testcase_34 AC 233 ms
99,180 KB
testcase_35 AC 221 ms
97,544 KB
testcase_36 AC 237 ms
97,048 KB
testcase_37 AC 214 ms
96,492 KB
testcase_38 AC 224 ms
98,100 KB
testcase_39 AC 232 ms
93,668 KB
testcase_40 AC 186 ms
93,552 KB
testcase_41 AC 205 ms
93,504 KB
testcase_42 AC 210 ms
93,688 KB
testcase_43 AC 212 ms
93,484 KB
testcase_44 AC 219 ms
124,080 KB
testcase_45 AC 224 ms
123,664 KB
testcase_46 AC 208 ms
125,080 KB
testcase_47 AC 204 ms
124,824 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N, M = map(int, input().split())
H = list(map(int, input().split()))
XY = [list(map(int, input().split())) for _ in range(M)]
# dp[i][j]:= 足場iにいてその前の移動が昇り:1,下り:0のときの登った回数の最大値
E = [[] for _ in range(N)]
for x, y in XY:
    E[x - 1].append(y - 1)
dp = [[-10 ** 12, -10 ** 12] for _ in range(N)]
dp[0][0] = 0
dp[0][1] = 0
for x in range(N):
    hx = H[x]
    for y in E[x]:
        hy = H[y]
        if hy > hx:
            dp[y][1] = max(dp[y][1], dp[x][0] + hy - hx)
        else:
            dp[y][0] = max(dp[y][0], dp[x][1], dp[x][0])
ans = []
ans.append(max(dp[N - 1]))
E = [[] for _ in range(N)]
for x, y in XY:
    E[y - 1].append(x - 1)
dp = [[-10 ** 12, -10 ** 12] for _ in range(N)]
dp[N - 1][0] = 0
dp[N - 1][1] = 0
for y in reversed(range(N)):
    hy = H[y]
    for x in E[y]:
        hx = H[x]
        if hx > hy:
            dp[x][1] = max(dp[x][1], dp[y][0] + hx - hy)
        else:
            dp[x][0] = max(dp[x][0], dp[y][1], dp[y][0])
ans.append(max(dp[0]))
for i in range(2):
    if ans[i] < 0:
        print(-1)
    else:
        print(ans[i])
0