結果

問題 No.2100 [Cherry Alpha C] Two-way Steps
ユーザー 👑 KazunKazun
提出日時 2022-10-09 20:09:44
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 469 ms / 2,000 ms
コード長 1,093 bytes
コンパイル時間 399 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 125,556 KB
最終ジャッジ日時 2024-06-26 13:30:30
合計ジャッジ時間 17,164 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
51,968 KB
testcase_01 AC 40 ms
52,224 KB
testcase_02 AC 40 ms
52,352 KB
testcase_03 AC 40 ms
52,352 KB
testcase_04 AC 362 ms
101,712 KB
testcase_05 AC 302 ms
95,776 KB
testcase_06 AC 145 ms
81,152 KB
testcase_07 AC 155 ms
82,048 KB
testcase_08 AC 362 ms
109,148 KB
testcase_09 AC 342 ms
92,800 KB
testcase_10 AC 241 ms
82,492 KB
testcase_11 AC 278 ms
98,004 KB
testcase_12 AC 262 ms
88,192 KB
testcase_13 AC 238 ms
96,208 KB
testcase_14 AC 373 ms
87,536 KB
testcase_15 AC 275 ms
100,668 KB
testcase_16 AC 382 ms
87,804 KB
testcase_17 AC 196 ms
97,940 KB
testcase_18 AC 256 ms
102,624 KB
testcase_19 AC 425 ms
108,204 KB
testcase_20 AC 173 ms
84,736 KB
testcase_21 AC 262 ms
89,472 KB
testcase_22 AC 412 ms
88,228 KB
testcase_23 AC 391 ms
103,880 KB
testcase_24 AC 454 ms
112,960 KB
testcase_25 AC 452 ms
113,352 KB
testcase_26 AC 445 ms
113,480 KB
testcase_27 AC 446 ms
112,960 KB
testcase_28 AC 469 ms
112,964 KB
testcase_29 AC 462 ms
113,220 KB
testcase_30 AC 461 ms
113,740 KB
testcase_31 AC 449 ms
113,100 KB
testcase_32 AC 454 ms
113,608 KB
testcase_33 AC 448 ms
113,356 KB
testcase_34 AC 406 ms
89,076 KB
testcase_35 AC 312 ms
87,040 KB
testcase_36 AC 322 ms
87,552 KB
testcase_37 AC 299 ms
86,528 KB
testcase_38 AC 377 ms
88,544 KB
testcase_39 AC 224 ms
85,376 KB
testcase_40 AC 224 ms
85,120 KB
testcase_41 AC 228 ms
85,248 KB
testcase_42 AC 224 ms
85,376 KB
testcase_43 AC 227 ms
85,248 KB
testcase_44 AC 269 ms
125,428 KB
testcase_45 AC 270 ms
125,556 KB
testcase_46 AC 251 ms
119,308 KB
testcase_47 AC 241 ms
114,308 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def solve():
    N,M=map(int,input().split())
    H=[-1]+list(map(int,input().split()))

    S=[[] for _ in range(N+1)]
    T=[[] for _ in range(N+1)]

    for j in range(M):
        x,y=map(int,input().split())
        S[y].append(x)
        T[x].append(y)

    inf=float("inf")

    # チェリーちゃん
    DP_c=[[-inf,-inf] for _ in range(N+1)]
    DP_c[1][0]=0

    for b in range(1,N+1):
        for a in S[b]:
            if H[a]>H[b]:
                DP_c[b][0]=max(DP_c[b][0], max(DP_c[a]))
            else:
                DP_c[b][1]=max(DP_c[b][1], DP_c[a][0]+(H[b]-H[a]))

    # ゼルコバ君
    DP_z=[[-inf,-inf] for _ in range(N+1)]
    DP_z[N][0]=0

    for b in range(N,0,-1):
        for a in T[b]:
            if H[a]>H[b]:
                DP_z[b][0]=max(DP_z[b][0], max(DP_z[a]))
            else:
                DP_z[b][1]=max(DP_z[b][1], DP_z[a][0]+(H[b]-H[a]))


    ans_c=max(DP_c[N]) if max(DP_c[N])>-inf else -1
    ans_z=max(DP_z[1]) if max(DP_z[1])>-inf else -1

    print(ans_c, ans_z, sep="\n")

#==================================================
solve()
0