結果

問題 No.2100 [Cherry Alpha C] Two-way Steps
ユーザー aaaaaaaaaa2230aaaaaaaaaa2230
提出日時 2022-10-14 22:34:12
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 455 ms / 2,000 ms
コード長 912 bytes
コンパイル時間 1,159 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 108,024 KB
最終ジャッジ日時 2024-06-26 16:04:18
合計ジャッジ時間 15,083 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
51,712 KB
testcase_01 AC 40 ms
51,840 KB
testcase_02 AC 39 ms
52,096 KB
testcase_03 AC 39 ms
51,968 KB
testcase_04 AC 349 ms
98,492 KB
testcase_05 AC 300 ms
93,304 KB
testcase_06 AC 139 ms
80,256 KB
testcase_07 AC 144 ms
81,152 KB
testcase_08 AC 371 ms
104,728 KB
testcase_09 AC 281 ms
90,112 KB
testcase_10 AC 200 ms
81,536 KB
testcase_11 AC 283 ms
95,676 KB
testcase_12 AC 220 ms
87,040 KB
testcase_13 AC 245 ms
95,932 KB
testcase_14 AC 215 ms
83,456 KB
testcase_15 AC 264 ms
97,328 KB
testcase_16 AC 223 ms
83,712 KB
testcase_17 AC 203 ms
95,604 KB
testcase_18 AC 241 ms
93,744 KB
testcase_19 AC 423 ms
103,404 KB
testcase_20 AC 155 ms
83,584 KB
testcase_21 AC 218 ms
87,424 KB
testcase_22 AC 228 ms
84,224 KB
testcase_23 AC 331 ms
99,880 KB
testcase_24 AC 455 ms
108,024 KB
testcase_25 AC 435 ms
107,300 KB
testcase_26 AC 418 ms
107,944 KB
testcase_27 AC 434 ms
107,808 KB
testcase_28 AC 436 ms
107,648 KB
testcase_29 AC 433 ms
107,908 KB
testcase_30 AC 424 ms
107,776 KB
testcase_31 AC 415 ms
107,700 KB
testcase_32 AC 424 ms
107,788 KB
testcase_33 AC 423 ms
107,524 KB
testcase_34 AC 274 ms
86,528 KB
testcase_35 AC 252 ms
86,016 KB
testcase_36 AC 259 ms
85,888 KB
testcase_37 AC 245 ms
85,376 KB
testcase_38 AC 267 ms
86,656 KB
testcase_39 AC 209 ms
85,888 KB
testcase_40 AC 210 ms
86,144 KB
testcase_41 AC 206 ms
86,016 KB
testcase_42 AC 208 ms
85,760 KB
testcase_43 AC 211 ms
86,016 KB
testcase_44 AC 225 ms
106,480 KB
testcase_45 AC 222 ms
106,228 KB
testcase_46 AC 217 ms
106,416 KB
testcase_47 AC 202 ms
98,472 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,m = map(int,input().split())
H = list(map(int,input().split()))
e = [[] for i in range(n)]
for _ in range(m):
    x,y = map(int,input().split())
    x,y = x-1,y-1
    e[x].append(y)
    e[y].append(x)


dp = [[-1]*2 for i in range(n)]
dp[0] = [0,0]
for i in range(n):
    h = H[i]
    for nex in e[i]:
        if nex < i:
            continue
        nh = H[nex]
        if h < nh and dp[i][0] != -1:
            dp[nex][1] = max(dp[nex][1],dp[i][0]+nh-h)
        if h > nh:
            dp[nex][0] = max(dp[nex][0],max(dp[i]))

print(max(dp[-1]))
      
dp = [[-1]*2 for i in range(n)]
dp[-1] = [0,0]
for i in range(n)[::-1]:
    h = H[i]
    for nex in e[i]:
        if nex > i:
            continue
        nh = H[nex]
        if h < nh and dp[i][0] != -1:
            dp[nex][1] = max(dp[nex][1],dp[i][0]+nh-h)
        if h > nh:
            dp[nex][0] = max(dp[nex][0],max(dp[i]))

print(max(dp[0]))
      
0