結果

問題 No.2100 [Cherry Alpha C] Two-way Steps
ユーザー flygonflygon
提出日時 2022-10-14 22:44:39
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 512 ms / 2,000 ms
コード長 963 bytes
コンパイル時間 320 ms
コンパイル使用メモリ 82,136 KB
実行使用メモリ 108,132 KB
最終ジャッジ日時 2024-06-26 16:24:09
合計ジャッジ時間 15,954 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,224 KB
testcase_01 AC 36 ms
52,480 KB
testcase_02 AC 38 ms
52,224 KB
testcase_03 AC 37 ms
51,968 KB
testcase_04 AC 397 ms
96,692 KB
testcase_05 AC 307 ms
93,812 KB
testcase_06 AC 140 ms
80,640 KB
testcase_07 AC 149 ms
81,952 KB
testcase_08 AC 382 ms
104,572 KB
testcase_09 AC 286 ms
90,732 KB
testcase_10 AC 193 ms
81,920 KB
testcase_11 AC 322 ms
96,408 KB
testcase_12 AC 251 ms
85,160 KB
testcase_13 AC 266 ms
92,852 KB
testcase_14 AC 224 ms
83,052 KB
testcase_15 AC 289 ms
97,664 KB
testcase_16 AC 215 ms
84,200 KB
testcase_17 AC 204 ms
91,964 KB
testcase_18 AC 276 ms
98,824 KB
testcase_19 AC 440 ms
103,736 KB
testcase_20 AC 177 ms
83,840 KB
testcase_21 AC 239 ms
85,708 KB
testcase_22 AC 218 ms
83,968 KB
testcase_23 AC 394 ms
101,060 KB
testcase_24 AC 512 ms
108,016 KB
testcase_25 AC 506 ms
108,132 KB
testcase_26 AC 458 ms
100,588 KB
testcase_27 AC 463 ms
100,520 KB
testcase_28 AC 449 ms
100,320 KB
testcase_29 AC 466 ms
100,340 KB
testcase_30 AC 462 ms
100,388 KB
testcase_31 AC 452 ms
100,456 KB
testcase_32 AC 461 ms
100,860 KB
testcase_33 AC 509 ms
108,068 KB
testcase_34 AC 264 ms
85,760 KB
testcase_35 AC 242 ms
86,012 KB
testcase_36 AC 245 ms
85,796 KB
testcase_37 AC 236 ms
85,676 KB
testcase_38 AC 254 ms
85,840 KB
testcase_39 AC 203 ms
85,504 KB
testcase_40 AC 204 ms
85,740 KB
testcase_41 AC 203 ms
85,316 KB
testcase_42 AC 201 ms
85,676 KB
testcase_43 AC 204 ms
85,376 KB
testcase_44 AC 198 ms
100,948 KB
testcase_45 AC 199 ms
101,520 KB
testcase_46 AC 197 ms
102,568 KB
testcase_47 AC 197 ms
102,828 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,m = map(int,input().split())
h = list(map(int,input().split()))
graph = [[] for i in range(n+1)]
for i in range(m):
  a,b = map(int,input().split())
  graph[a-1].append(b-1)
  graph[b-1].append(a-1)

for i in range(n):
  graph[i].sort()

INF = 10**18
dp = [[-INF,-INF] for i in range(n)]
dp[0] = [0,0]
for crr in range(n):
  hc = h[crr]
  for nxt in graph[crr][::-1]:
    if crr > nxt: break
    hn = h[nxt]
    if hn > hc:
      dp[nxt][1] = max(dp[nxt][1], dp[crr][0] + hn - hc)
    else:
      dp[nxt][0] = max(dp[nxt][0], dp[crr][1], dp[crr][0])
ans = max(dp[-1])
print(-1) if ans < 0 else print(ans)

dp = [[-INF,-INF] for i in range(n)]
dp[n-1] = [0,0]
for crr in range(n)[::-1]:
  hc = h[crr]
  for nxt in graph[crr]:
    if crr < nxt: break
    hn = h[nxt]
    if hn > hc:
      dp[nxt][1] = max(dp[nxt][1], dp[crr][0] + hn - hc)
    else:
      dp[nxt][0] = max(dp[nxt][0], dp[crr][1], dp[crr][0])

ans = max(dp[0])
print(-1) if ans < 0 else print(ans)
0