結果

問題 No.949 飲酒プログラミングコンテスト
ユーザー tktk_snsntktk_snsn
提出日時 2021-01-07 22:01:03
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,485 ms / 2,500 ms
コード長 769 bytes
コンパイル時間 325 ms
コンパイル使用メモリ 82,520 KB
実行使用メモリ 148,008 KB
最終ジャッジ日時 2024-11-14 03:22:29
合計ジャッジ時間 16,200 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,340 KB
testcase_01 AC 37 ms
53,332 KB
testcase_02 AC 37 ms
52,656 KB
testcase_03 AC 37 ms
52,412 KB
testcase_04 AC 44 ms
60,036 KB
testcase_05 AC 63 ms
68,688 KB
testcase_06 AC 58 ms
65,540 KB
testcase_07 AC 63 ms
69,236 KB
testcase_08 AC 94 ms
77,132 KB
testcase_09 AC 80 ms
74,976 KB
testcase_10 AC 65 ms
70,680 KB
testcase_11 AC 912 ms
127,276 KB
testcase_12 AC 933 ms
128,340 KB
testcase_13 AC 896 ms
122,076 KB
testcase_14 AC 180 ms
83,520 KB
testcase_15 AC 470 ms
111,836 KB
testcase_16 AC 878 ms
141,076 KB
testcase_17 AC 132 ms
84,492 KB
testcase_18 AC 1,095 ms
144,080 KB
testcase_19 AC 475 ms
127,988 KB
testcase_20 AC 165 ms
87,692 KB
testcase_21 AC 98 ms
81,024 KB
testcase_22 AC 109 ms
86,212 KB
testcase_23 AC 47 ms
62,808 KB
testcase_24 AC 532 ms
113,700 KB
testcase_25 AC 1,485 ms
148,000 KB
testcase_26 AC 1,215 ms
148,008 KB
testcase_27 AC 1,095 ms
147,932 KB
testcase_28 AC 1,151 ms
147,004 KB
testcase_29 AC 670 ms
147,892 KB
testcase_30 AC 300 ms
147,716 KB
testcase_31 AC 172 ms
147,536 KB
testcase_32 AC 1,045 ms
147,852 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
A = list(map(int, input().split()))
B = list(map(int, input().split()))
D = list(map(int, input().split()))
D.sort(reverse=True)

dp = [[0] * (N + 1) for _ in range(N + 1)]


def C(x):  # k問とけるか判定
    k = N - x
    solve = 1
    while k < N:
        for i in range(solve + 1):
            j = solve - i
            val = 0
            if i:
                val = max(val, dp[i-1][j] + (A[i]+B[j] >= D[k]))
            if j:
                val = max(val, dp[i][j-1] + (A[i]+B[j] >= D[k]))
            dp[i][j] = val
        solve += 1
        k += 1
    res = max(dp[i][x - i] for i in range(x + 1))
    return res == x


l = -1
r = N + 1
while (r - l) > 1:
    m = (r + l) // 2
    if C(m):
        l = m
    else:
        r = m
print(l)
0