結果

問題 No.2856 Junk Market Game
ユーザー prd_xxxprd_xxx
提出日時 2024-08-25 15:03:12
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 93 ms / 2,000 ms
コード長 722 bytes
コンパイル時間 201 ms
コンパイル使用メモリ 82,224 KB
実行使用メモリ 76,652 KB
最終ジャッジ日時 2024-08-25 15:03:18
合計ジャッジ時間 5,246 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,364 KB
testcase_01 AC 35 ms
53,088 KB
testcase_02 AC 35 ms
52,828 KB
testcase_03 AC 32 ms
52,964 KB
testcase_04 AC 34 ms
52,696 KB
testcase_05 AC 36 ms
53,032 KB
testcase_06 AC 35 ms
52,980 KB
testcase_07 AC 34 ms
52,612 KB
testcase_08 AC 35 ms
53,536 KB
testcase_09 AC 38 ms
53,156 KB
testcase_10 AC 54 ms
69,084 KB
testcase_11 AC 79 ms
76,396 KB
testcase_12 AC 84 ms
76,464 KB
testcase_13 AC 54 ms
68,076 KB
testcase_14 AC 81 ms
76,312 KB
testcase_15 AC 62 ms
69,172 KB
testcase_16 AC 82 ms
76,640 KB
testcase_17 AC 68 ms
73,784 KB
testcase_18 AC 74 ms
76,516 KB
testcase_19 AC 66 ms
73,724 KB
testcase_20 AC 54 ms
69,844 KB
testcase_21 AC 82 ms
76,400 KB
testcase_22 AC 79 ms
76,276 KB
testcase_23 AC 73 ms
76,272 KB
testcase_24 AC 73 ms
76,420 KB
testcase_25 AC 54 ms
68,144 KB
testcase_26 AC 34 ms
52,344 KB
testcase_27 AC 77 ms
76,572 KB
testcase_28 AC 63 ms
73,060 KB
testcase_29 AC 83 ms
76,208 KB
testcase_30 AC 93 ms
76,652 KB
testcase_31 AC 83 ms
76,380 KB
testcase_32 AC 88 ms
76,348 KB
testcase_33 AC 84 ms
76,168 KB
testcase_34 AC 85 ms
76,344 KB
testcase_35 AC 85 ms
76,340 KB
testcase_36 AC 88 ms
76,300 KB
testcase_37 AC 84 ms
76,464 KB
testcase_38 AC 87 ms
76,344 KB
testcase_39 AC 86 ms
76,572 KB
testcase_40 AC 84 ms
76,532 KB
testcase_41 AC 84 ms
76,176 KB
testcase_42 AC 92 ms
76,460 KB
testcase_43 AC 83 ms
76,332 KB
testcase_44 AC 85 ms
76,568 KB
testcase_45 AC 87 ms
76,412 KB
testcase_46 AC 87 ms
76,464 KB
testcase_47 AC 84 ms
76,312 KB
testcase_48 AC 84 ms
76,536 KB
testcase_49 AC 84 ms
76,332 KB
testcase_50 AC 83 ms
76,416 KB
testcase_51 AC 83 ms
76,352 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
A = list(map(int,input().split()))
B = list(map(int,input().split()))
AB = [(a,b) for a,b in zip(A,B)]
AB.sort(key=lambda x: x[0]+x[1])
NN = N+N

INF = 10**18
dp = [-b for a,b in AB]
for l in range(1,NN):
    if l%2:
        ndp = [INF] * (NN-l)
    else:
        ndp = [-INF] * (NN-l)
    for i in range(NN-l):
        if l%2:
            if i+1 < len(dp):
                ndp[i] = min(ndp[i], dp[i+1] + AB[i][0])
            if i+l < NN:
                ndp[i] = min(ndp[i], dp[i] + AB[i+l][0])
        else:
            if i+1 < len(dp):
                ndp[i] = max(ndp[i], dp[i+1] - AB[i][1])
            if i+l < NN:
                ndp[i] = max(ndp[i], dp[i] - AB[i+l][1])
    dp = ndp
print(dp[0])
0