結果

問題 No.949 飲酒プログラミングコンテスト
ユーザー mkawa2mkawa2
提出日時 2021-03-25 00:05:29
言語 PyPy3
(7.3.15)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 1,351 bytes
コンパイル時間 148 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 255,356 KB
最終ジャッジ日時 2024-05-05 05:35:06
合計ジャッジ時間 21,980 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
54,272 KB
testcase_01 AC 46 ms
53,760 KB
testcase_02 AC 46 ms
53,632 KB
testcase_03 AC 44 ms
54,272 KB
testcase_04 AC 43 ms
54,144 KB
testcase_05 AC 47 ms
54,656 KB
testcase_06 AC 41 ms
54,528 KB
testcase_07 AC 45 ms
55,040 KB
testcase_08 AC 66 ms
70,656 KB
testcase_09 AC 43 ms
55,424 KB
testcase_10 AC 52 ms
63,616 KB
testcase_11 AC 794 ms
226,124 KB
testcase_12 AC 622 ms
221,136 KB
testcase_13 AC 608 ms
255,356 KB
testcase_14 AC 116 ms
130,432 KB
testcase_15 AC 929 ms
248,432 KB
testcase_16 AC 2,118 ms
205,192 KB
testcase_17 AC 115 ms
136,448 KB
testcase_18 AC 757 ms
203,192 KB
testcase_19 AC 1,064 ms
227,912 KB
testcase_20 AC 255 ms
138,116 KB
testcase_21 AC 113 ms
98,364 KB
testcase_22 AC 161 ms
148,068 KB
testcase_23 AC 48 ms
62,592 KB
testcase_24 AC 405 ms
251,648 KB
testcase_25 AC 1,111 ms
218,480 KB
testcase_26 AC 825 ms
210,140 KB
testcase_27 AC 2,498 ms
218,712 KB
testcase_28 AC 730 ms
209,884 KB
testcase_29 AC 2,132 ms
218,100 KB
testcase_30 AC 1,188 ms
217,748 KB
testcase_31 AC 762 ms
204,008 KB
testcase_32 TLE -
権限があれば一括ダウンロードができます

ソースコード

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

from collections import deque

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

def ok(m):
    stack = deque()
    stack.append((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