結果

問題 No.2100 [Cherry Alpha C] Two-way Steps
ユーザー KazunKazun
提出日時 2022-07-28 00:58:25
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 421 ms / 2,000 ms
コード長 1,118 bytes
コンパイル時間 311 ms
コンパイル使用メモリ 82,340 KB
実行使用メモリ 131,004 KB
最終ジャッジ日時 2024-06-26 12:47:09
合計ジャッジ時間 17,101 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
54,156 KB
testcase_01 AC 36 ms
52,460 KB
testcase_02 AC 36 ms
52,868 KB
testcase_03 AC 37 ms
54,192 KB
testcase_04 AC 351 ms
101,804 KB
testcase_05 AC 271 ms
95,940 KB
testcase_06 AC 115 ms
82,228 KB
testcase_07 AC 124 ms
81,940 KB
testcase_08 AC 325 ms
109,724 KB
testcase_09 AC 286 ms
93,240 KB
testcase_10 AC 264 ms
83,200 KB
testcase_11 AC 252 ms
98,336 KB
testcase_12 AC 218 ms
88,228 KB
testcase_13 AC 220 ms
101,760 KB
testcase_14 AC 346 ms
87,892 KB
testcase_15 AC 232 ms
100,588 KB
testcase_16 AC 373 ms
87,836 KB
testcase_17 AC 175 ms
97,644 KB
testcase_18 AC 217 ms
102,180 KB
testcase_19 AC 358 ms
108,404 KB
testcase_20 AC 137 ms
84,444 KB
testcase_21 AC 197 ms
89,424 KB
testcase_22 AC 326 ms
87,284 KB
testcase_23 AC 307 ms
103,808 KB
testcase_24 AC 399 ms
113,016 KB
testcase_25 AC 415 ms
113,036 KB
testcase_26 AC 397 ms
112,912 KB
testcase_27 AC 406 ms
113,168 KB
testcase_28 AC 391 ms
112,888 KB
testcase_29 AC 398 ms
113,172 KB
testcase_30 AC 402 ms
112,908 KB
testcase_31 AC 395 ms
113,300 KB
testcase_32 AC 393 ms
112,884 KB
testcase_33 AC 396 ms
112,776 KB
testcase_34 AC 421 ms
91,040 KB
testcase_35 AC 362 ms
88,788 KB
testcase_36 AC 350 ms
88,480 KB
testcase_37 AC 319 ms
87,832 KB
testcase_38 AC 413 ms
90,392 KB
testcase_39 AC 226 ms
85,752 KB
testcase_40 AC 223 ms
86,040 KB
testcase_41 AC 225 ms
85,752 KB
testcase_42 AC 227 ms
86,136 KB
testcase_43 AC 229 ms
85,704 KB
testcase_44 AC 270 ms
131,004 KB
testcase_45 AC 258 ms
130,860 KB
testcase_46 AC 225 ms
119,748 KB
testcase_47 AC 216 ms
114,120 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

    Sc=[[] for _ in range(N+1)]
    Sz=[[] for _ in range(N+1)]

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

    inf=float("inf")

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

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

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

    for a in range(N,0,-1):
        for b in Sz[a]:
            if a>b:
                if H[a]<H[b]:
                    DP_z[b][1]=max(DP_z[b][1], DP_z[a][0]+(H[b]-H[a]))
                else:
                    DP_z[b][0]=max(DP_z[b][0], max(DP_z[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