結果

問題 No.2100 [Cherry Alpha C] Two-way Steps
ユーザー sepa38sepa38
提出日時 2022-10-14 22:00:29
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 356 ms / 2,000 ms
コード長 977 bytes
コンパイル時間 322 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 119,164 KB
最終ジャッジ日時 2024-06-26 14:04:24
合計ジャッジ時間 13,411 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
54,016 KB
testcase_01 AC 39 ms
54,016 KB
testcase_02 AC 38 ms
54,144 KB
testcase_03 AC 38 ms
54,528 KB
testcase_04 AC 273 ms
92,724 KB
testcase_05 AC 228 ms
88,380 KB
testcase_06 AC 107 ms
81,584 KB
testcase_07 AC 109 ms
80,660 KB
testcase_08 AC 265 ms
103,620 KB
testcase_09 AC 257 ms
92,396 KB
testcase_10 AC 207 ms
83,328 KB
testcase_11 AC 205 ms
89,532 KB
testcase_12 AC 192 ms
86,768 KB
testcase_13 AC 182 ms
97,012 KB
testcase_14 AC 216 ms
85,388 KB
testcase_15 AC 184 ms
90,508 KB
testcase_16 AC 231 ms
84,948 KB
testcase_17 AC 148 ms
93,780 KB
testcase_18 AC 187 ms
93,716 KB
testcase_19 AC 314 ms
100,656 KB
testcase_20 AC 121 ms
81,256 KB
testcase_21 AC 175 ms
84,448 KB
testcase_22 AC 222 ms
85,888 KB
testcase_23 AC 244 ms
93,568 KB
testcase_24 AC 348 ms
114,000 KB
testcase_25 AC 355 ms
114,240 KB
testcase_26 AC 354 ms
114,432 KB
testcase_27 AC 351 ms
114,128 KB
testcase_28 AC 349 ms
114,124 KB
testcase_29 AC 356 ms
114,168 KB
testcase_30 AC 348 ms
114,244 KB
testcase_31 AC 347 ms
114,128 KB
testcase_32 AC 352 ms
114,112 KB
testcase_33 AC 355 ms
114,232 KB
testcase_34 AC 293 ms
88,088 KB
testcase_35 AC 267 ms
87,548 KB
testcase_36 AC 258 ms
87,476 KB
testcase_37 AC 245 ms
87,520 KB
testcase_38 AC 272 ms
88,192 KB
testcase_39 AC 221 ms
87,604 KB
testcase_40 AC 212 ms
87,752 KB
testcase_41 AC 214 ms
87,936 KB
testcase_42 AC 214 ms
87,680 KB
testcase_43 AC 212 ms
87,552 KB
testcase_44 AC 249 ms
118,988 KB
testcase_45 AC 247 ms
119,164 KB
testcase_46 AC 228 ms
110,924 KB
testcase_47 AC 227 ms
110,912 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque
n, m = map(int, input().split())
h = list(map(int, input().split()))
e = [[] for i in range(n)]
re = [[] for i in range(n)]
for i in range(m):
  x, y = map(lambda x: int(x)-1, input().split())
  x, y = sorted([x, y])
  e[x].append(y)
  re[y].append(x)
dp = [[-1, -1] for i in range(n)]
dp[0] = [0, -1]
flg = [0] * n
flg[0] = 1
for u in range(n):
  if flg[u] == 0:
    continue
  for v in e[u]:
    if h[v] > h[u]:
      if dp[u][0] == -1:
        continue
      dp[v][1] = max(dp[v][1], dp[u][0]+h[v]-h[u])
    else:
      dp[v][0] = max(dp[v][0], max(dp[u]))
    flg[v] = 1
print(max(dp[-1]))
dp = [[-1, -1] for i in range(n)]
dp[-1] = [0, -1]
flg = [0] * n
flg[-1] = 1
for u in reversed(range(n)):
  if flg[u] == 0:
    continue
  for v in re[u]:
    if h[v] > h[u]:
      if dp[u][0] == -1:
        continue
      dp[v][1] = max(dp[v][1], dp[u][0]+h[v]-h[u])
    else:
      dp[v][0] = max(dp[v][0], max(dp[u]))
    flg[v] = 1
print(max(dp[0]))
0