結果
問題 | No.2279 OR Insertion |
ユーザー | ああいい |
提出日時 | 2023-04-29 11:21:29 |
言語 | PyPy3 (7.3.15) |
結果 |
TLE
|
実行時間 | - |
コード長 | 3,294 bytes |
コンパイル時間 | 185 ms |
コンパイル使用メモリ | 82,568 KB |
実行使用メモリ | 266,760 KB |
最終ジャッジ日時 | 2024-11-18 09:11:54 |
合計ジャッジ時間 | 107,273 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 39 ms
59,772 KB |
testcase_01 | AC | 90 ms
202,312 KB |
testcase_02 | TLE | - |
testcase_03 | AC | 1,772 ms
266,760 KB |
testcase_04 | TLE | - |
testcase_05 | AC | 592 ms
233,172 KB |
testcase_06 | TLE | - |
testcase_07 | TLE | - |
testcase_08 | TLE | - |
testcase_09 | TLE | - |
testcase_10 | TLE | - |
testcase_11 | TLE | - |
testcase_12 | TLE | - |
testcase_13 | AC | 1,338 ms
99,004 KB |
testcase_14 | AC | 1,666 ms
254,776 KB |
testcase_15 | TLE | - |
testcase_16 | AC | 398 ms
229,412 KB |
testcase_17 | TLE | - |
testcase_18 | TLE | - |
testcase_19 | TLE | - |
testcase_20 | TLE | - |
testcase_21 | TLE | - |
testcase_22 | AC | 40 ms
61,196 KB |
testcase_23 | AC | 39 ms
219,324 KB |
testcase_24 | AC | 39 ms
60,552 KB |
testcase_25 | AC | 39 ms
219,412 KB |
testcase_26 | AC | 41 ms
61,288 KB |
testcase_27 | AC | 41 ms
220,180 KB |
testcase_28 | AC | 40 ms
60,320 KB |
testcase_29 | AC | 39 ms
220,280 KB |
testcase_30 | AC | 40 ms
60,576 KB |
testcase_31 | AC | 40 ms
220,364 KB |
testcase_32 | TLE | - |
testcase_33 | TLE | - |
testcase_34 | TLE | - |
testcase_35 | TLE | - |
testcase_36 | TLE | - |
testcase_37 | TLE | - |
testcase_38 | TLE | - |
testcase_39 | TLE | - |
testcase_40 | TLE | - |
testcase_41 | TLE | - |
testcase_42 | TLE | - |
testcase_43 | TLE | - |
testcase_44 | TLE | - |
testcase_45 | TLE | - |
testcase_46 | TLE | - |
testcase_47 | TLE | - |
testcase_48 | TLE | - |
testcase_49 | TLE | - |
ソースコード
#頂点は1-index,下段は0-index class LazySegTree: #単位元と結合と作用をここで定義 Xunit = (0,0) Aunit = 0 def Xf(self,x,y): return ((x[0] + y[0]) % P,x[1] + y[1]) #Xf = max def Af(self,a,b): return a + b #AのXへの作用 def operate(self,x,a): return ((x[0] + x[1] * a % P) % P,x[1]) def __init__(self,N): self.N = N self.X = [self.Xunit] * (N + N) self.A = [self.Aunit] * (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.Xf(self.X[i<<1],self.X[i<<1 | 1]) def eval_at(self,i): return self.operate(self.X[i],self.A[i]) def propagate_at(self,i): self.X[i] = self.eval_at(i) self.A[i<<1] = self.Af(self.A[i<<1],self.A[i]) self.A[i<<1 | 1] = self.Af(self.A[i<<1 | 1],self.A[i]) self.A[i] = self.Aunit def propagate_above(self,i): H = i.bit_length() - 1 for h in range(H,0,-1): self.propagate_at(i >> h) def recalc_above(self,i): while i > 1: i >>= 1 self.X[i] = self.Xf(self.eval_at(i << 1),self.eval_at(i << 1 | 1)) def update(self,i,x): i += self.N self.propagate_above(i) self.X[i] = x self.A[i] = self.Aunit self.recalc_above(i) def fold(self,L = 0,R = -1): if R == -1:R = self.N L += self.N R += self.N self.propagate_above(L // (L & -L)) self.propagate_above(R // (R & -R) -1) vL = self.Xunit vR = self.Xunit while L < R: if L & 1: vL = self.Xf(vL,self.eval_at(L)) L += 1 if R & 1: R -= 1 vR = self.Xf(self.eval_at(R),vR) L >>= 1 R >>= 1 return self.Xf(vL,vR) def operate_range(self,L,R,x): #区間全体に作用させる L += self.N R += self.N L0 = L // (L & -L) R0 = R // (R & -R) - 1 self.propagate_above(L0) self.propagate_above(R0) while L < R: if L & 1: self.A[L] = self.Af(self.A[L],x) L += 1 if R & 1: R -= 1 self.A[R] = self.Af(self.A[R],x) L >>= 1 R >>= 1 self.recalc_above(L0) self.recalc_above(R0) def write(self): print(self.X) def change(self,Xf,Xunit,Af,Aunit,operate): self.Xf = Xf self.Xunit = Xunit self.Af = Af self.Aunit = Aunit self.operate = operate N = int(input()) S = input() P = 998244353 ans = 0 for i in range(1,N + 1): seg = LazySegTree(N + 2) seg.build([(1,1)] + [(0,1)] * (N + 1)) for j in range(N): now = seg.fold(j,j + 1)[0] #print(now) end = 0 if i + j > N: end = N + 2 else: if S[-(i+j)] == "0": end = N + 2 else: end = i + j seg.operate_range(j + 1,end,now) last = seg.fold(N + 1,N + 2)[0] #print(last) ans += pow(2,(i-1),P) * (pow(2,N - 1,P) - last) % P print(ans % P)