結果

問題 No.2100 [Cherry Alpha C] Two-way Steps
ユーザー titiatitia
提出日時 2022-10-14 22:10:47
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 911 bytes
コンパイル時間 356 ms
コンパイル使用メモリ 82,448 KB
実行使用メモリ 98,248 KB
最終ジャッジ日時 2024-06-26 14:51:39
合計ジャッジ時間 19,882 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
54,552 KB
testcase_01 AC 35 ms
52,740 KB
testcase_02 AC 36 ms
52,484 KB
testcase_03 AC 37 ms
53,004 KB
testcase_04 AC 508 ms
94,960 KB
testcase_05 AC 420 ms
89,288 KB
testcase_06 AC 99 ms
77,156 KB
testcase_07 AC 114 ms
77,812 KB
testcase_08 AC 388 ms
90,692 KB
testcase_09 WA -
testcase_10 WA -
testcase_11 AC 342 ms
88,700 KB
testcase_12 WA -
testcase_13 AC 220 ms
86,752 KB
testcase_14 WA -
testcase_15 AC 245 ms
85,108 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 AC 211 ms
86,600 KB
testcase_19 AC 522 ms
94,192 KB
testcase_20 AC 153 ms
79,772 KB
testcase_21 WA -
testcase_22 WA -
testcase_23 AC 387 ms
89,888 KB
testcase_24 AC 583 ms
97,856 KB
testcase_25 WA -
testcase_26 AC 594 ms
98,000 KB
testcase_27 WA -
testcase_28 AC 580 ms
97,856 KB
testcase_29 WA -
testcase_30 AC 576 ms
97,980 KB
testcase_31 WA -
testcase_32 AC 586 ms
97,624 KB
testcase_33 AC 579 ms
97,868 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 134 ms
90,200 KB
testcase_47 AC 135 ms
90,024 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline
from operator import itemgetter

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(key=itemgetter(0))

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(key=itemgetter(1),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