結果

問題 No.2890 Chiffon
ユーザー PNJPNJ
提出日時 2024-09-13 23:19:52
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 975 bytes
コンパイル時間 238 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 272,548 KB
最終ジャッジ日時 2024-09-13 23:20:31
合計ジャッジ時間 30,437 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
52,608 KB
testcase_01 AC 40 ms
52,224 KB
testcase_02 AC 40 ms
52,992 KB
testcase_03 AC 50 ms
61,624 KB
testcase_04 AC 45 ms
57,856 KB
testcase_05 AC 55 ms
63,104 KB
testcase_06 AC 53 ms
61,952 KB
testcase_07 AC 45 ms
57,728 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 AC 57 ms
64,128 KB
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 AC 59 ms
62,720 KB
testcase_18 WA -
testcase_19 AC 41 ms
52,608 KB
testcase_20 AC 41 ms
52,736 KB
testcase_21 AC 40 ms
52,608 KB
testcase_22 AC 867 ms
272,548 KB
testcase_23 AC 571 ms
192,344 KB
testcase_24 AC 495 ms
174,000 KB
testcase_25 AC 850 ms
242,800 KB
testcase_26 WA -
testcase_27 AC 146 ms
86,568 KB
testcase_28 AC 183 ms
104,064 KB
testcase_29 AC 498 ms
155,692 KB
testcase_30 WA -
testcase_31 AC 755 ms
254,728 KB
testcase_32 AC 166 ms
86,656 KB
testcase_33 AC 862 ms
248,976 KB
testcase_34 AC 924 ms
248,652 KB
testcase_35 AC 911 ms
264,404 KB
testcase_36 AC 925 ms
248,652 KB
testcase_37 AC 905 ms
249,144 KB
testcase_38 AC 928 ms
249,156 KB
testcase_39 AC 862 ms
248,584 KB
testcase_40 AC 910 ms
264,404 KB
testcase_41 AC 865 ms
248,648 KB
testcase_42 AC 883 ms
249,268 KB
testcase_43 AC 1,047 ms
248,908 KB
testcase_44 AC 1,045 ms
248,684 KB
testcase_45 AC 1,047 ms
249,120 KB
testcase_46 AC 1,047 ms
248,992 KB
testcase_47 AC 1,057 ms
249,112 KB
testcase_48 AC 1,014 ms
264,420 KB
testcase_49 AC 1,013 ms
264,296 KB
testcase_50 AC 1,035 ms
264,936 KB
testcase_51 AC 1,010 ms
264,544 KB
testcase_52 AC 1,008 ms
264,420 KB
testcase_53 AC 938 ms
256,768 KB
testcase_54 AC 967 ms
263,352 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 = 1
r = N + 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