結果

問題 No.2100 [Cherry Alpha C] Two-way Steps
ユーザー titiatitia
提出日時 2022-10-14 22:07:08
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 845 bytes
コンパイル時間 1,107 ms
コンパイル使用メモリ 82,688 KB
実行使用メモリ 94,468 KB
最終ジャッジ日時 2024-06-26 14:45:00
合計ジャッジ時間 22,372 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
52,352 KB
testcase_01 AC 40 ms
52,352 KB
testcase_02 AC 39 ms
52,224 KB
testcase_03 AC 38 ms
52,352 KB
testcase_04 AC 533 ms
89,896 KB
testcase_05 AC 479 ms
88,892 KB
testcase_06 AC 113 ms
77,440 KB
testcase_07 AC 128 ms
77,824 KB
testcase_08 AC 431 ms
90,368 KB
testcase_09 WA -
testcase_10 WA -
testcase_11 AC 375 ms
86,160 KB
testcase_12 WA -
testcase_13 AC 234 ms
87,040 KB
testcase_14 WA -
testcase_15 AC 277 ms
85,504 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 AC 240 ms
87,040 KB
testcase_19 AC 589 ms
93,212 KB
testcase_20 AC 169 ms
80,384 KB
testcase_21 WA -
testcase_22 WA -
testcase_23 AC 434 ms
88,176 KB
testcase_24 AC 638 ms
93,328 KB
testcase_25 WA -
testcase_26 AC 629 ms
94,232 KB
testcase_27 WA -
testcase_28 AC 642 ms
93,584 KB
testcase_29 WA -
testcase_30 AC 663 ms
93,972 KB
testcase_31 WA -
testcase_32 AC 636 ms
93,836 KB
testcase_33 AC 634 ms
93,832 KB
testcase_34 WA -
testcase_35 WA -
testcase_36 WA -
testcase_37 WA -
testcase_38 WA -
testcase_39 WA -
testcase_40 WA -
testcase_41 WA -
testcase_42 WA -
testcase_43 WA -
testcase_44 WA -
testcase_45 WA -
testcase_46 AC 157 ms
89,728 KB
testcase_47 AC 159 ms
89,984 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

N,M=map(int,input().split())
H=list(map(int,input().split()))

E=[tuple(map(int,input().split())) for i in range(M)]

DP=[-1<<60]*N 
DP2=[-1<<60]*N # 次に下りのみ

DP[0]=0

E.sort()

for x,y in E:
    x-=1
    y-=1

    if H[x]<H[y]:
        DP2[y]=max(DP2[y],DP[x]+(H[y]-H[x]))
    else:
        DP[y]=max(DP[y],DP[x])
        DP2[y]=max(DP2[y],DP2[x])

ANS=max(DP[N-1],DP2[N-1])

if ANS<0:
    ANS=-1

DP=[-1<<60]*N 
DP2=[-1<<60]*N # 次に下りのみ

DP[N-1]=0

E.sort(reverse=True)

for x,y in E:
    x-=1
    y-=1
    x,y=y,x

    #print(x,y)

    if H[x]<H[y]:
        DP2[y]=max(DP2[y],DP[x]+(H[y]-H[x]))
    else:
        DP[y]=max(DP[y],DP[x])
        DP2[y]=max(DP2[y],DP2[x])

    #print(DP[x],DP2[x],DP[y],DP2[y])

ANS2=max(DP[0],DP2[0])

if ANS2<0:
    ANS2=-1

print(ANS)
print(ANS2)
0