結果

問題 No.2890 Chiffon
ユーザー PNJPNJ
提出日時 2024-09-13 23:08:12
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 986 bytes
コンパイル時間 348 ms
コンパイル使用メモリ 82,568 KB
実行使用メモリ 242,872 KB
最終ジャッジ日時 2024-09-13 23:08:32
合計ジャッジ時間 17,534 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,608 KB
testcase_01 AC 43 ms
52,352 KB
testcase_02 AC 39 ms
52,352 KB
testcase_03 AC 44 ms
58,752 KB
testcase_04 AC 41 ms
52,352 KB
testcase_05 AC 46 ms
59,264 KB
testcase_06 AC 45 ms
58,112 KB
testcase_07 AC 44 ms
52,748 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 AC 49 ms
61,312 KB
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 AC 45 ms
59,264 KB
testcase_18 WA -
testcase_19 AC 39 ms
52,224 KB
testcase_20 AC 39 ms
52,864 KB
testcase_21 AC 39 ms
52,224 KB
testcase_22 AC 497 ms
236,692 KB
testcase_23 AC 407 ms
158,048 KB
testcase_24 AC 360 ms
160,980 KB
testcase_25 AC 724 ms
242,872 KB
testcase_26 WA -
testcase_27 AC 155 ms
83,388 KB
testcase_28 AC 187 ms
89,504 KB
testcase_29 AC 433 ms
170,476 KB
testcase_30 WA -
testcase_31 AC 553 ms
242,276 KB
testcase_32 AC 118 ms
82,000 KB
testcase_33 AC 356 ms
160,768 KB
testcase_34 AC 421 ms
160,384 KB
testcase_35 AC 407 ms
160,628 KB
testcase_36 AC 425 ms
160,640 KB
testcase_37 AC 441 ms
160,384 KB
testcase_38 AC 429 ms
160,996 KB
testcase_39 AC 367 ms
161,028 KB
testcase_40 AC 441 ms
160,836 KB
testcase_41 AC 359 ms
160,896 KB
testcase_42 AC 354 ms
161,020 KB
testcase_43 AC 450 ms
160,896 KB
testcase_44 AC 422 ms
160,896 KB
testcase_45 AC 422 ms
160,628 KB
testcase_46 AC 448 ms
160,688 KB
testcase_47 AC 421 ms
160,740 KB
testcase_48 AC 444 ms
160,764 KB
testcase_49 AC 421 ms
160,620 KB
testcase_50 AC 417 ms
160,512 KB
testcase_51 AC 447 ms
160,896 KB
testcase_52 AC 420 ms
160,840 KB
testcase_53 AC 699 ms
225,340 KB
testcase_54 AC 467 ms
154,000 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from bisect import *

N,K = map(int,input().split())
A = list(map(int,input().split()))
m = 2 * N - 1 - A[-1]
for i in range(K):
  A[i] += m

berry = [0] * (4 * N)
R = [0] * (4 * N)
for i in range(K):
  a = A[i]
  berry[a] = 1
  berry[a + 2 * N] = 1
  R[a] = 1
  R[a + 2 * N] = 1
  A.append(a + 2 * N)
for i in range(4 * N - 1):
  R[i + 1] += R[i]

l = 2
r = (2 * N) // K + 1
d = [-1 for u in range(2 * N)]
for u in range(2 * N):
  d[u] = A[bisect_left(A,u)]
while r - l > 1:
  m = (l + r) // 2
  dp = [0 for u in range(4 * N)]
  dp[0] = 1
  f = 0
  for u in range(2 * N):
    if berry[u]:
      f = 1
      continue
    if f == 0:
      dp[u] = u + 1
    else:
      if berry[u - 1] == 0:
        dp[u] = max(dp[u],dp[u - 1])
    v = max(u + m,d[u])
    if berry[v]:
      v += 1
    if R[v] - R[u] == 1:
      dp[v] = max(dp[v],dp[u])
  f = 0
  for u in range(2 * N):
    if berry[u]:
      break
    if dp[u + 2 * N] >= u + 1:
      f = 1
  if f:
    l = m
  else:
    r = m
print(l)
0