結果

問題 No.949 飲酒プログラミングコンテスト
ユーザー pekempeypekempey
提出日時 2019-12-12 00:19:04
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 683 bytes
コンパイル時間 150 ms
コンパイル使用メモリ 82,792 KB
実行使用メモリ 393,100 KB
最終ジャッジ日時 2024-06-24 08:09:36
合計ジャッジ時間 17,437 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
59,960 KB
testcase_01 AC 37 ms
52,336 KB
testcase_02 AC 36 ms
52,284 KB
testcase_03 AC 36 ms
52,616 KB
testcase_04 AC 45 ms
60,124 KB
testcase_05 AC 64 ms
69,188 KB
testcase_06 AC 56 ms
66,696 KB
testcase_07 AC 71 ms
75,152 KB
testcase_08 AC 107 ms
77,316 KB
testcase_09 AC 85 ms
76,404 KB
testcase_10 AC 90 ms
77,240 KB
testcase_11 AC 2,233 ms
370,904 KB
testcase_12 TLE -
testcase_13 AC 2,142 ms
317,828 KB
testcase_14 AC 315 ms
115,940 KB
testcase_15 AC 1,498 ms
321,992 KB
testcase_16 TLE -
testcase_17 AC 328 ms
112,656 KB
testcase_18 TLE -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
testcase_31 -- -
testcase_32 -- -
権限があれば一括ダウンロードができます

ソースコード

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)

l = -1
r = N
while r - l > 1:
  m = (l + r) // 2
  dp = [[False for j in range(N+1-m)] for i in range(N+1-m)]
  dp[0][0] = True
  for i in range(N-m):
    for j in range(N-m):
      if i + j + m >= N: continue
      if not dp[i][j]: continue
      if A[i+1] + B[j] >= D[i+j+m]:
        dp[i+1][j] = True
      if A[i] + B[j+1] >= D[i+j+m]:
        dp[i][j+1] = True
  ans = 0
  for i in range(N+1-m):
    for j in range(N+1-m):
      if dp[i][j]:
        ans = max(ans, i+j)
  if ans == N - m:
    r = m
  else:
    l = m

print(N - r)
0