結果

問題 No.2890 Chiffon
ユーザー PNJPNJ
提出日時 2024-09-13 22:56:43
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 820 bytes
コンパイル時間 160 ms
コンパイル使用メモリ 82,140 KB
実行使用メモリ 264,400 KB
最終ジャッジ日時 2024-09-13 22:57:11
合計ジャッジ時間 27,696 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
53,980 KB
testcase_01 AC 39 ms
54,048 KB
testcase_02 AC 39 ms
53,620 KB
testcase_03 AC 39 ms
53,600 KB
testcase_04 AC 39 ms
53,744 KB
testcase_05 AC 44 ms
59,264 KB
testcase_06 AC 39 ms
53,556 KB
testcase_07 AC 39 ms
52,940 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 AC 52 ms
63,400 KB
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 AC 40 ms
52,824 KB
testcase_18 WA -
testcase_19 AC 39 ms
52,728 KB
testcase_20 AC 39 ms
52,984 KB
testcase_21 AC 38 ms
53,024 KB
testcase_22 AC 214 ms
217,384 KB
testcase_23 AC 1,146 ms
179,052 KB
testcase_24 AC 917 ms
156,904 KB
testcase_25 AC 1,925 ms
248,560 KB
testcase_26 WA -
testcase_27 AC 155 ms
82,760 KB
testcase_28 AC 243 ms
90,292 KB
testcase_29 AC 1,075 ms
173,068 KB
testcase_30 WA -
testcase_31 AC 1,701 ms
235,020 KB
testcase_32 AC 148 ms
81,932 KB
testcase_33 AC 440 ms
168,560 KB
testcase_34 AC 521 ms
168,444 KB
testcase_35 AC 563 ms
168,388 KB
testcase_36 AC 567 ms
168,380 KB
testcase_37 AC 554 ms
168,796 KB
testcase_38 AC 567 ms
168,428 KB
testcase_39 AC 435 ms
168,624 KB
testcase_40 AC 538 ms
168,244 KB
testcase_41 AC 438 ms
168,428 KB
testcase_42 AC 467 ms
168,624 KB
testcase_43 AC 538 ms
168,416 KB
testcase_44 AC 537 ms
168,536 KB
testcase_45 AC 544 ms
168,800 KB
testcase_46 AC 532 ms
168,744 KB
testcase_47 AC 531 ms
168,540 KB
testcase_48 AC 523 ms
168,760 KB
testcase_49 AC 551 ms
168,376 KB
testcase_50 AC 528 ms
168,196 KB
testcase_51 AC 539 ms
168,476 KB
testcase_52 AC 528 ms
168,572 KB
testcase_53 TLE -
testcase_54 AC 614 ms
150,644 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
while r - l > 1:
  m = (l + r) // 2
  dp = [0 for u in range(4 * N)]
  dp[0] = 1
  for u in range(2 * N):
    if berry[u]:
      continue
    if berry[u - 1] == 0:
      dp[u] |= dp[u - 1]
    v = max(u + m,A[bisect_left(A,u)])
    if berry[v]:
      v += 1
    if R[v] - R[u] == 1:
      dp[v] |= dp[u]
  f = 0
  for u in range(2 * N):
    if berry[u]:
      break
    if dp[u + 2 * N]:
      f = 1
  if f:
    l = m
  else:
    r = m
print(l)
0