結果

問題 No.949 飲酒プログラミングコンテスト
ユーザー ttrttr
提出日時 2020-01-31 20:13:11
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,375 ms / 2,500 ms
コード長 767 bytes
コンパイル時間 230 ms
コンパイル使用メモリ 82,424 KB
実行使用メモリ 218,876 KB
最終ジャッジ日時 2024-09-17 06:58:39
合計ジャッジ時間 20,325 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
52,880 KB
testcase_01 AC 33 ms
52,764 KB
testcase_02 AC 33 ms
53,408 KB
testcase_03 AC 33 ms
53,204 KB
testcase_04 AC 39 ms
59,784 KB
testcase_05 AC 56 ms
69,764 KB
testcase_06 AC 55 ms
69,396 KB
testcase_07 AC 65 ms
76,168 KB
testcase_08 AC 89 ms
77,512 KB
testcase_09 AC 77 ms
76,368 KB
testcase_10 AC 69 ms
76,244 KB
testcase_11 AC 942 ms
172,104 KB
testcase_12 AC 942 ms
178,612 KB
testcase_13 AC 872 ms
164,356 KB
testcase_14 AC 182 ms
89,408 KB
testcase_15 AC 651 ms
145,764 KB
testcase_16 AC 1,129 ms
203,680 KB
testcase_17 AC 179 ms
88,632 KB
testcase_18 AC 1,191 ms
204,452 KB
testcase_19 AC 1,049 ms
177,636 KB
testcase_20 AC 274 ms
97,948 KB
testcase_21 AC 139 ms
85,228 KB
testcase_22 AC 247 ms
93,124 KB
testcase_23 AC 75 ms
77,224 KB
testcase_24 AC 670 ms
139,532 KB
testcase_25 AC 1,245 ms
218,332 KB
testcase_26 AC 1,234 ms
218,472 KB
testcase_27 AC 1,286 ms
218,508 KB
testcase_28 AC 1,225 ms
205,720 KB
testcase_29 AC 1,375 ms
218,764 KB
testcase_30 AC 1,361 ms
218,416 KB
testcase_31 AC 765 ms
215,912 KB
testcase_32 AC 1,324 ms
218,876 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import bisect
N = int(input())
A = [int(a) for a in input().split()]
B = [int(b) for b in input().split()]
D = [int(d) for d in input().split()]

D.sort()
L = [[N]*(N+1) for _ in range(N+1)]
for i in range(N+1):
    for j in range(N+1):
        if i+j > N:
            continue
        c = A[i] + B[j]
        L[i][j] = bisect.bisect_right(D, c)

dp = [[-1]*(N+1) for _ in range(N+1)]
dp[0][0] = N
for i in range(N):
    for j in range(N):
        if i+j >= N:
            continue
        dp[i+1][j] = max(dp[i+1][j], min(L[i+1][j], dp[i][j]) - 1)
        dp[i][j+1] = max(dp[i][j+1], min(L[i][j+1], dp[i][j]) - 1)

ans = 0
for i in range(N+1):
    for j in range(N+1):
        if dp[i][j] < 0 or i+j > N:
            continue
        ans = max(ans, i+j)

print(ans)
0