結果

問題 No.949 飲酒プログラミングコンテスト
ユーザー りあんりあん
提出日時 2019-12-05 23:01:07
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 449 ms / 2,500 ms
コード長 689 bytes
コンパイル時間 296 ms
コンパイル使用メモリ 82,920 KB
実行使用メモリ 148,080 KB
最終ジャッジ日時 2024-06-24 02:37:08
合計ジャッジ時間 7,761 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,372 KB
testcase_01 AC 38 ms
52,396 KB
testcase_02 AC 39 ms
52,712 KB
testcase_03 AC 38 ms
52,988 KB
testcase_04 AC 40 ms
53,496 KB
testcase_05 AC 45 ms
60,748 KB
testcase_06 AC 46 ms
60,628 KB
testcase_07 AC 63 ms
68,900 KB
testcase_08 AC 97 ms
76,764 KB
testcase_09 AC 62 ms
68,572 KB
testcase_10 AC 55 ms
64,556 KB
testcase_11 AC 348 ms
126,776 KB
testcase_12 AC 377 ms
127,860 KB
testcase_13 AC 365 ms
121,556 KB
testcase_14 AC 100 ms
82,568 KB
testcase_15 AC 208 ms
111,564 KB
testcase_16 AC 304 ms
140,796 KB
testcase_17 AC 101 ms
84,308 KB
testcase_18 AC 345 ms
143,912 KB
testcase_19 AC 248 ms
126,844 KB
testcase_20 AC 115 ms
86,900 KB
testcase_21 AC 73 ms
73,552 KB
testcase_22 AC 95 ms
85,404 KB
testcase_23 AC 47 ms
62,372 KB
testcase_24 AC 231 ms
111,156 KB
testcase_25 AC 449 ms
147,176 KB
testcase_26 AC 449 ms
148,080 KB
testcase_27 AC 324 ms
147,184 KB
testcase_28 AC 359 ms
146,968 KB
testcase_29 AC 332 ms
147,272 KB
testcase_30 AC 267 ms
147,284 KB
testcase_31 AC 198 ms
132,812 KB
testcase_32 AC 435 ms
147,808 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#!/usr/bin/env pypy3

n = int(input())
a = list(map(int, input().split()))
b = list(map(int, input().split()))
d = list(map(int, input().split()))

d.sort()

dp = [[0 for j in range(n + 1)] for i in range(n + 1)]
dp[0][0] = n + 1
ans = 0
for i in range(n + 1):
    k = n
    for j in range(n + 1):
        if i == 0 and j == 0:
            continue
        while k > 0 and d[k - 1] > a[i] + b[j]:
            k -= 1

        ma = -1
        if i > 0:
            ma = max(ma, dp[i - 1][j] - 1)
        if j > 0:
            ma = max(ma, dp[i][j - 1] - 1)

        dp[i][j] = min(k, ma)
        if dp[i][j] > 0:
            ans = max(ans, i + j)
        else:
            break

print(ans)
0