結果

問題 No.2100 [Cherry Alpha C] Two-way Steps
ユーザー ikomaikoma
提出日時 2022-10-14 22:32:18
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 531 ms / 2,000 ms
コード長 1,116 bytes
コンパイル時間 252 ms
コンパイル使用メモリ 82,556 KB
実行使用メモリ 132,892 KB
最終ジャッジ日時 2024-06-26 15:53:35
合計ジャッジ時間 15,966 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
54,416 KB
testcase_01 AC 41 ms
54,420 KB
testcase_02 AC 39 ms
55,392 KB
testcase_03 AC 39 ms
54,444 KB
testcase_04 AC 426 ms
119,196 KB
testcase_05 AC 330 ms
108,232 KB
testcase_06 AC 130 ms
81,328 KB
testcase_07 AC 147 ms
84,804 KB
testcase_08 AC 387 ms
118,348 KB
testcase_09 AC 335 ms
110,104 KB
testcase_10 AC 206 ms
97,108 KB
testcase_11 AC 301 ms
108,900 KB
testcase_12 AC 236 ms
98,720 KB
testcase_13 AC 233 ms
101,332 KB
testcase_14 AC 262 ms
97,228 KB
testcase_15 AC 252 ms
103,012 KB
testcase_16 AC 274 ms
99,008 KB
testcase_17 AC 172 ms
93,544 KB
testcase_18 AC 270 ms
104,816 KB
testcase_19 AC 412 ms
122,212 KB
testcase_20 AC 164 ms
88,016 KB
testcase_21 AC 233 ms
97,084 KB
testcase_22 AC 272 ms
97,992 KB
testcase_23 AC 338 ms
115,284 KB
testcase_24 AC 496 ms
132,644 KB
testcase_25 AC 472 ms
132,752 KB
testcase_26 AC 455 ms
128,036 KB
testcase_27 AC 488 ms
128,040 KB
testcase_28 AC 504 ms
128,136 KB
testcase_29 AC 497 ms
128,160 KB
testcase_30 AC 506 ms
128,028 KB
testcase_31 AC 503 ms
128,404 KB
testcase_32 AC 497 ms
128,052 KB
testcase_33 AC 531 ms
132,892 KB
testcase_34 AC 331 ms
107,652 KB
testcase_35 AC 291 ms
105,716 KB
testcase_36 AC 296 ms
105,868 KB
testcase_37 AC 262 ms
104,196 KB
testcase_38 AC 310 ms
105,008 KB
testcase_39 AC 216 ms
103,316 KB
testcase_40 AC 218 ms
103,736 KB
testcase_41 AC 207 ms
103,312 KB
testcase_42 AC 219 ms
103,752 KB
testcase_43 AC 220 ms
103,540 KB
testcase_44 AC 204 ms
119,560 KB
testcase_45 AC 207 ms
119,684 KB
testcase_46 AC 207 ms
118,812 KB
testcase_47 AC 207 ms
125,368 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline
from collections import deque
N,M=map(int,input().split())
H=list(map(int,input().split()))
XY=[list(map(lambda x:int(x)-1,input().split())) for _ in range(M)]

edge1 = [[] for _ in range(N)]
edge2 = [[] for _ in range(N)]

ins1 = [0]*N
ins2 = [0]*N

for x,y in XY:
    edge1[x].append((y,max(0, H[y]-H[x])))
    ins1[y]+=1
    edge2[y].append((x,max(0, H[x]-H[y])))
    ins2[x]+=1
INF=10**60
def solve(edge, ins, start, goal):
    dp = [-INF]*N
    dp2 = [-INF]*N
    dp[start]=0

    que = deque()
    for i,j in enumerate(ins):
        if j==0:
            que.append(i)
    while que:
        cur = que.popleft()
        u = dp[cur]
        u2 = dp2[cur]
        for to,h in edge[cur]:
            if h>0:
                dp2[to] = max(dp2[to], u + h)
            else:
                dp[to] = max(dp[to], u2, u)
            ins[to]-=1
            if ins[to]==0:
                que.append(to)
    ans = max(dp[goal], dp2[goal])
    if ans<0:
        print(-1)
    else:
        print(ans)
    # print(dp)
    # print(dp2)

solve(edge1,ins1, 0, -1)
solve(edge2,ins2, -1, 0)
0