結果

問題 No.1313 N言っちゃダメゲーム (4)
ユーザー wolgnikwolgnik
提出日時 2020-12-10 02:09:57
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,074 bytes
コンパイル時間 192 ms
コンパイル使用メモリ 82,120 KB
実行使用メモリ 90,164 KB
最終ジャッジ日時 2024-09-19 08:47:17
合計ジャッジ時間 4,157 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
52,772 KB
testcase_01 WA -
testcase_02 AC 35 ms
53,848 KB
testcase_03 AC 34 ms
53,084 KB
testcase_04 AC 34 ms
52,756 KB
testcase_05 AC 37 ms
52,192 KB
testcase_06 AC 35 ms
52,072 KB
testcase_07 AC 34 ms
52,604 KB
testcase_08 AC 33 ms
53,432 KB
testcase_09 AC 32 ms
53,664 KB
testcase_10 WA -
testcase_11 AC 36 ms
52,956 KB
testcase_12 AC 34 ms
53,128 KB
testcase_13 AC 84 ms
89,476 KB
testcase_14 WA -
testcase_15 AC 112 ms
89,868 KB
testcase_16 AC 116 ms
89,544 KB
testcase_17 AC 113 ms
90,004 KB
testcase_18 AC 100 ms
84,344 KB
testcase_19 AC 100 ms
83,804 KB
testcase_20 AC 69 ms
77,352 KB
testcase_21 AC 91 ms
82,388 KB
testcase_22 AC 79 ms
79,308 KB
testcase_23 WA -
testcase_24 AC 68 ms
76,836 KB
testcase_25 AC 97 ms
84,296 KB
testcase_26 AC 53 ms
67,140 KB
testcase_27 AC 75 ms
81,492 KB
testcase_28 WA -
testcase_29 AC 110 ms
89,664 KB
testcase_30 WA -
testcase_31 WA -
testcase_32 AC 115 ms
90,164 KB
testcase_33 AC 89 ms
90,100 KB
testcase_34 AC 91 ms
90,152 KB
testcase_35 AC 78 ms
89,448 KB
testcase_36 AC 83 ms
89,368 KB
testcase_37 AC 89 ms
89,668 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline
N, K = map(int, input().split())
S = list(input())[: -1]
dp = [0] * (N + 1)

class FenwickTree:
  def __init__(self, n):
    self.n = n
    self.data = [0] * (n + 2)
  def sum(self, l, r):
    s = 0
    while l > 0:
      s -= self.data[l]
      l -= l & -l
    while r > 0:
      s += self.data[r]
      r -= r & -r
    return s
  def add(self, i, x):
    i += 1
    while i <= self.n:
      self.data[i] += x
      i += i & -i
  def lowerbound(self, s):
    x = 0
    y = 0
    for i in range(self.n.bit_length(), -1, -1):
      k = x + (1 << i)
      if k <= self.n and (y + self.data[k] < s):
        y += self.data[k]
        x += 1 << i
    return x + 1

fwk = FenwickTree(N)
fwk.add(N, 1)
dp[-1] = 1
if S[-1] == "x":
  dp[-2] = 1
  fwk.add(N - 1, 1)
for i in range(N - 2, -1, -1):
  if S[i - 1] == "x":
    dp[i] = 1
    fwk.add(i, 1)
    continue
  r = min(N, i + K)
  s = fwk.sum(i, r + 1)
  if s < r - i: dp[i] = 1
  fwk.add(i, dp[i])
f = 0
for i in range(1, K + 1):
  if dp[i] == 0:
    print(i)
    f = 1
if f == 0: print(0)
0