結果

問題 No.949 飲酒プログラミングコンテスト
ユーザー mkawa2mkawa2
提出日時 2021-03-24 23:59:18
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,871 ms / 2,500 ms
コード長 1,296 bytes
コンパイル時間 221 ms
コンパイル使用メモリ 82,560 KB
実行使用メモリ 254,496 KB
最終ジャッジ日時 2024-05-05 05:34:12
合計ジャッジ時間 14,521 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,352 KB
testcase_01 AC 38 ms
52,608 KB
testcase_02 AC 38 ms
52,736 KB
testcase_03 AC 37 ms
52,608 KB
testcase_04 AC 35 ms
52,224 KB
testcase_05 AC 37 ms
53,248 KB
testcase_06 AC 35 ms
52,608 KB
testcase_07 AC 36 ms
54,016 KB
testcase_08 AC 53 ms
68,992 KB
testcase_09 AC 37 ms
54,144 KB
testcase_10 AC 45 ms
62,592 KB
testcase_11 AC 451 ms
225,844 KB
testcase_12 AC 347 ms
219,876 KB
testcase_13 AC 362 ms
254,496 KB
testcase_14 AC 83 ms
128,256 KB
testcase_15 AC 697 ms
247,704 KB
testcase_16 AC 1,511 ms
204,676 KB
testcase_17 AC 75 ms
134,656 KB
testcase_18 AC 381 ms
201,716 KB
testcase_19 AC 669 ms
227,156 KB
testcase_20 AC 195 ms
137,472 KB
testcase_21 AC 90 ms
101,596 KB
testcase_22 AC 108 ms
138,748 KB
testcase_23 AC 42 ms
60,672 KB
testcase_24 AC 222 ms
250,624 KB
testcase_25 AC 717 ms
217,672 KB
testcase_26 AC 401 ms
208,316 KB
testcase_27 AC 1,757 ms
217,308 KB
testcase_28 AC 370 ms
208,032 KB
testcase_29 AC 1,425 ms
217,412 KB
testcase_30 AC 791 ms
216,920 KB
testcase_31 AC 375 ms
202,196 KB
testcase_32 AC 1,871 ms
217,676 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

sys.setrecursionlimit(10**6)
int1 = lambda x: int(x)-1
p2D = lambda x: print(*x, sep="\n")
def II(): return int(sys.stdin.buffer.readline())
def LI(): return list(map(int, sys.stdin.buffer.readline().split()))
def LI1(): return list(map(int1, sys.stdin.buffer.readline().split()))
def LLI(rows_number): return [LI() for _ in range(rows_number)]
def LLI1(rows_number): return [LI1() for _ in range(rows_number)]
def BI(): return sys.stdin.buffer.readline().rstrip()
def SI(): return sys.stdin.buffer.readline().rstrip().decode()
# dij = [(0, 1), (-1, 0), (0, -1), (1, 0)]
dij = [(0, 1), (-1, 0), (0, -1), (1, 0), (1, 1), (1, -1), (-1, 1), (-1, -1)]
inf = 10**16
# md = 998244353
md = 10**9+7

n = II()
aa = LI()
bb = LI()
dd = LI()
dd.sort(reverse=True)

def ok(m):
    stack = [(0, 0, m)]
    fin = [False]*(n+1)*(n+1)
    while stack:
        i, j, k = stack.pop()
        if k == n: return True
        if aa[i+1]+bb[j] >= dd[k] and not fin[(i+1)*(n+1)+j]:
            fin[(i+1)*(n+1)+j] = True
            stack.append((i+1, j, k+1))
        if aa[i]+bb[j+1] >= dd[k] and not fin[i*(n+1)+j+1]:
            fin[i*(n+1)+j+1] = True
            stack.append((i, j+1, k+1))
    return False

l, r = -1, n
while l+1 < r:
    m = (l+r)//2
    if ok(m): r = m
    else: l = m

print(n-r)
0