結果

問題 No.2100 [Cherry Alpha C] Two-way Steps
ユーザー ニックネームニックネーム
提出日時 2022-10-14 21:54:12
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 1,125 ms / 2,000 ms
コード長 751 bytes
コンパイル時間 281 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 38,872 KB
最終ジャッジ日時 2024-06-26 13:49:10
合計ジャッジ時間 35,166 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,880 KB
testcase_01 AC 30 ms
10,880 KB
testcase_02 AC 29 ms
10,752 KB
testcase_03 AC 30 ms
11,008 KB
testcase_04 AC 845 ms
31,068 KB
testcase_05 AC 701 ms
26,792 KB
testcase_06 AC 118 ms
14,464 KB
testcase_07 AC 154 ms
15,556 KB
testcase_08 AC 769 ms
33,468 KB
testcase_09 AC 737 ms
25,924 KB
testcase_10 AC 603 ms
18,816 KB
testcase_11 AC 606 ms
27,028 KB
testcase_12 AC 505 ms
21,788 KB
testcase_13 AC 387 ms
27,108 KB
testcase_14 AC 523 ms
20,608 KB
testcase_15 AC 462 ms
27,268 KB
testcase_16 AC 579 ms
21,504 KB
testcase_17 AC 220 ms
23,836 KB
testcase_18 AC 420 ms
27,556 KB
testcase_19 AC 941 ms
34,800 KB
testcase_20 AC 213 ms
16,608 KB
testcase_21 AC 461 ms
21,456 KB
testcase_22 AC 572 ms
21,376 KB
testcase_23 AC 716 ms
30,696 KB
testcase_24 AC 1,125 ms
38,724 KB
testcase_25 AC 1,064 ms
38,720 KB
testcase_26 AC 1,065 ms
38,848 KB
testcase_27 AC 1,071 ms
38,848 KB
testcase_28 AC 1,042 ms
38,844 KB
testcase_29 AC 1,086 ms
38,728 KB
testcase_30 AC 1,069 ms
38,724 KB
testcase_31 AC 1,062 ms
38,856 KB
testcase_32 AC 1,079 ms
38,852 KB
testcase_33 AC 1,059 ms
38,872 KB
testcase_34 AC 871 ms
25,600 KB
testcase_35 AC 885 ms
23,552 KB
testcase_36 AC 878 ms
23,296 KB
testcase_37 AC 850 ms
22,528 KB
testcase_38 AC 870 ms
24,576 KB
testcase_39 AC 848 ms
19,712 KB
testcase_40 AC 831 ms
19,584 KB
testcase_41 AC 825 ms
19,584 KB
testcase_42 AC 830 ms
19,712 KB
testcase_43 AC 828 ms
19,712 KB
testcase_44 AC 635 ms
37,096 KB
testcase_45 AC 634 ms
37,212 KB
testcase_46 AC 565 ms
35,468 KB
testcase_47 AC 563 ms
35,468 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n, m = map(int, input().split())
h = list(map(int, input().split()))
adj = [[] for _ in range(n)]
for _ in range(m):
    x, y = map(int, input().split())
    adj[x-1].append(y-1); adj[y-1].append(x-1)
dp10 = [0]+[-1]*(n-1); dp11 = [-1]*n
dp20 = [-1]*(n-1)+[0]; dp21 = [-1]*n
for i in range(n):
    for j in adj[i]:
        if j < i: continue
        if h[j]-h[i] < 0: dp10[j] = max(dp10[j], dp10[i], dp11[i])
        elif dp10[i] > -1: dp11[j] = max(dp11[j], dp10[i]+h[j]-h[i])
for i in range(n-1, -1, -1):
    for j in adj[i]:
        if j > i: continue
        if h[j]-h[i] < 0: dp20[j] = max(dp20[j], dp20[i], dp21[i])
        elif dp20[i] > -1: dp21[j] = max(dp21[j], dp20[i]+h[j]-h[i])
print(max(dp10[-1], dp11[-1])); print(max(dp20[0], dp21[0]))
0