結果

問題 No.949 飲酒プログラミングコンテスト
ユーザー mkawa2mkawa2
提出日時 2019-12-16 22:49:56
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,260 ms / 2,500 ms
コード長 1,245 bytes
コンパイル時間 193 ms
コンパイル使用メモリ 82,528 KB
実行使用メモリ 147,412 KB
最終ジャッジ日時 2024-07-02 20:45:04
合計ジャッジ時間 16,820 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
53,712 KB
testcase_01 AC 38 ms
52,764 KB
testcase_02 AC 38 ms
52,864 KB
testcase_03 AC 39 ms
52,964 KB
testcase_04 AC 44 ms
58,968 KB
testcase_05 AC 50 ms
62,292 KB
testcase_06 AC 50 ms
63,496 KB
testcase_07 AC 56 ms
73,116 KB
testcase_08 AC 75 ms
76,308 KB
testcase_09 AC 63 ms
75,424 KB
testcase_10 AC 63 ms
75,788 KB
testcase_11 AC 937 ms
125,880 KB
testcase_12 AC 923 ms
127,352 KB
testcase_13 AC 822 ms
121,216 KB
testcase_14 AC 171 ms
82,340 KB
testcase_15 AC 572 ms
110,624 KB
testcase_16 AC 990 ms
140,672 KB
testcase_17 AC 200 ms
84,096 KB
testcase_18 AC 1,208 ms
143,324 KB
testcase_19 AC 603 ms
126,412 KB
testcase_20 AC 177 ms
86,316 KB
testcase_21 AC 90 ms
80,448 KB
testcase_22 AC 112 ms
84,764 KB
testcase_23 AC 49 ms
63,852 KB
testcase_24 AC 689 ms
112,664 KB
testcase_25 AC 1,204 ms
147,028 KB
testcase_26 AC 1,235 ms
147,068 KB
testcase_27 AC 1,084 ms
147,364 KB
testcase_28 AC 1,260 ms
146,444 KB
testcase_29 AC 829 ms
147,412 KB
testcase_30 AC 428 ms
146,920 KB
testcase_31 AC 322 ms
135,400 KB
testcase_32 AC 1,153 ms
146,812 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from bisect import bisect_right
import sys

sys.setrecursionlimit(10 ** 6)
int1 = lambda x: int(x) - 1
p2D = lambda x: print(*x, sep="\n")
def MI(): return map(int, sys.stdin.readline().split())
def LI(): return list(map(int, sys.stdin.readline().split()))
def LLI(rows_number): return [LI() for _ in range(rows_number)]

def main():
    n = int(input())
    aa = LI()
    bb = LI()
    dd = LI()
    dd.sort()
    # dp[i][j]kenがi回、kooがj回飲んだとき、何番目の問題まで進んだかの最大値
    dp = [[-1] * (n + 1) for _ in range(n + 1)]
    dp[0][0] = n
    # 2人合わせてs回のんだとき
    dpi1=dp[0]
    for i in range(n):
        dpi=dpi1
        dpi1=dp[i+1]
        for j in range(n):
            pre = dpi[j]
            if pre < 1: continue
            # iを進める場合
            di = bisect_right(dd, aa[i + 1] + bb[j], 0, pre) - 1
            if di > dpi1[j]: dpi1[j] = di
            # jを進める場合
            di = bisect_right(dd, aa[i] + bb[j + 1], 0, pre) - 1
            if di > dpi[j + 1]: dpi[j + 1] = di
    #p2D(dp)
    for s in range(n,-1,-1):
        for i in range(n+1):
            j=s-i
            if dp[i][j]>-1:
                print(s)
                exit()
main()
0