結果

問題 No.1313 N言っちゃダメゲーム (4)
ユーザー ああいいああいい
提出日時 2022-04-14 22:22:29
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 232 ms / 2,000 ms
コード長 1,708 bytes
コンパイル時間 253 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 86,136 KB
最終ジャッジ日時 2024-06-06 18:45:16
合計ジャッジ時間 6,820 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,480 KB
testcase_01 AC 37 ms
52,352 KB
testcase_02 AC 36 ms
52,608 KB
testcase_03 AC 37 ms
52,608 KB
testcase_04 AC 37 ms
52,608 KB
testcase_05 AC 37 ms
52,224 KB
testcase_06 AC 36 ms
51,968 KB
testcase_07 AC 37 ms
52,224 KB
testcase_08 AC 37 ms
52,608 KB
testcase_09 AC 38 ms
52,352 KB
testcase_10 AC 37 ms
52,224 KB
testcase_11 AC 38 ms
52,224 KB
testcase_12 AC 37 ms
52,096 KB
testcase_13 AC 157 ms
85,760 KB
testcase_14 AC 205 ms
86,136 KB
testcase_15 AC 232 ms
86,060 KB
testcase_16 AC 198 ms
83,840 KB
testcase_17 AC 140 ms
81,072 KB
testcase_18 AC 182 ms
82,412 KB
testcase_19 AC 181 ms
81,408 KB
testcase_20 AC 100 ms
76,936 KB
testcase_21 AC 134 ms
78,728 KB
testcase_22 AC 125 ms
79,232 KB
testcase_23 AC 158 ms
80,116 KB
testcase_24 AC 109 ms
76,832 KB
testcase_25 AC 173 ms
82,368 KB
testcase_26 AC 95 ms
76,280 KB
testcase_27 AC 126 ms
78,336 KB
testcase_28 AC 183 ms
82,036 KB
testcase_29 AC 194 ms
82,136 KB
testcase_30 AC 204 ms
84,232 KB
testcase_31 AC 190 ms
82,176 KB
testcase_32 AC 208 ms
84,524 KB
testcase_33 AC 169 ms
81,996 KB
testcase_34 AC 181 ms
81,792 KB
testcase_35 AC 140 ms
85,360 KB
testcase_36 AC 163 ms
82,908 KB
testcase_37 AC 171 ms
82,880 KB
権限があれば一括ダウンロードができます

ソースコード

diff #


class SegTree:
    #単位元と結合演算はここ変える
    #いろんな種類のsegは作れないかも
    #→changeで変えれる
    
    unit = 1 << 30
    def f(self,x,y):
        return min(x,y)

    #頂点は1-index、一番下の段は0-index(bitは1-index)
    def __init__(self,N):
        self.N = N
        self.X = [self.unit] * (N + N)
    def build(self,seq):
        for i,x in enumerate(seq,self.N):
            self.X[i] = x
        for i in range(self.N-1,0,-1):
            self.X[i] = self.f(self.X[i << 1],self.X[i << 1 | 1])
    def set(self,i,x):
        i += self.N
        self.X[i] = x
        while i > 1:
            i >>= 1
            self.X[i] = self.f(self.X[i << 1],self.X[i << 1 | 1])
    def fold(self,L,R):
        #区間[L,R)についてfold
        #0 <= L,R <= N にしなきゃダメ
        L += self.N
        R += self.N
        vL = self.unit
        vR = self.unit
        while L < R:
            if L & 1:
                vL = self.f(vL,self.X[L])
                L += 1
            if R & 1:
                R -= 1
                vR = self.f(self.X[R],vR)
            L >>= 1
            R >>= 1
        return self.f(vL,vR)
    def change(self,f,unit):
        self.f = f
        self.unit = unit

N,K = map(int,input().split())
S = input()
seg = SegTree(N + K)
seq = [1] * (N + K)
seg.build(seq)
for i in range(N - 1,-1,-1):
    tmp = seg.fold(i + 1,i + 1 + K)
    if i > 0 and S[i-1]== "o":
        seg.set(i,1 - tmp)
    if i == 0:
        seg.set(0,1 - tmp)
import sys
if seg.fold(0,1) == 0:
    print(0)
    exit()
else:
    ans = []
    for i in range(1,K+1):
        if seg.fold(i,i+1) == 0:
            ans.append(i)
    print(*ans)
0