結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,096 KB
testcase_01 AC 39 ms
52,480 KB
testcase_02 AC 40 ms
52,096 KB
testcase_03 AC 41 ms
52,352 KB
testcase_04 AC 45 ms
57,856 KB
testcase_05 AC 49 ms
62,336 KB
testcase_06 AC 47 ms
59,904 KB
testcase_07 AC 56 ms
72,448 KB
testcase_08 AC 73 ms
75,688 KB
testcase_09 AC 62 ms
75,756 KB
testcase_10 AC 64 ms
75,904 KB
testcase_11 AC 1,188 ms
125,692 KB
testcase_12 AC 1,222 ms
126,976 KB
testcase_13 AC 1,077 ms
121,000 KB
testcase_14 AC 171 ms
82,048 KB
testcase_15 AC 710 ms
110,720 KB
testcase_16 AC 1,306 ms
140,288 KB
testcase_17 AC 208 ms
84,496 KB
testcase_18 AC 1,655 ms
143,236 KB
testcase_19 AC 724 ms
126,764 KB
testcase_20 AC 188 ms
87,348 KB
testcase_21 AC 103 ms
80,524 KB
testcase_22 AC 134 ms
85,248 KB
testcase_23 AC 49 ms
61,952 KB
testcase_24 AC 920 ms
112,768 KB
testcase_25 AC 1,722 ms
146,924 KB
testcase_26 AC 1,852 ms
147,200 KB
testcase_27 AC 1,460 ms
146,972 KB
testcase_28 AC 1,808 ms
146,520 KB
testcase_29 AC 1,048 ms
146,700 KB
testcase_30 AC 573 ms
146,888 KB
testcase_31 AC 378 ms
134,600 KB
testcase_32 AC 1,531 ms
147,416 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回のんだとき
    for s in range(n):
        for i in range(s + 1):
            j = s - i
            pre = dp[i][j]
            if pre < 1: continue
            # iを進める場合
            di = bisect_right(dd, aa[i + 1] + bb[j], 0, pre) - 1
            if di > dp[i + 1][j]: dp[i + 1][j] = di
            # jを進める場合
            di = bisect_right(dd, aa[i] + bb[j + 1], 0, pre) - 1
            if di > dp[i][j + 1]: dp[i][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