結果
問題 | No.2279 OR Insertion |
ユーザー | ああいい |
提出日時 | 2023-04-29 11:23:24 |
言語 | PyPy3 (7.3.15) |
結果 |
TLE
|
実行時間 | - |
コード長 | 3,232 bytes |
コンパイル時間 | 146 ms |
コンパイル使用メモリ | 82,436 KB |
実行使用メモリ | 205,988 KB |
最終ジャッジ日時 | 2024-11-18 09:14:34 |
合計ジャッジ時間 | 105,362 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 36 ms
60,604 KB |
testcase_01 | AC | 81 ms
177,916 KB |
testcase_02 | TLE | - |
testcase_03 | AC | 1,364 ms
205,296 KB |
testcase_04 | TLE | - |
testcase_05 | AC | 490 ms
86,352 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,142 ms
90,692 KB |
testcase_14 | AC | 1,424 ms
205,988 KB |
testcase_15 | TLE | - |
testcase_16 | AC | 344 ms
194,488 KB |
testcase_17 | TLE | - |
testcase_18 | TLE | - |
testcase_19 | TLE | - |
testcase_20 | TLE | - |
testcase_21 | TLE | - |
testcase_22 | AC | 33 ms
59,700 KB |
testcase_23 | AC | 34 ms
181,976 KB |
testcase_24 | AC | 35 ms
60,904 KB |
testcase_25 | AC | 34 ms
181,292 KB |
testcase_26 | AC | 35 ms
61,036 KB |
testcase_27 | AC | 36 ms
180,388 KB |
testcase_28 | AC | 35 ms
59,816 KB |
testcase_29 | AC | 36 ms
186,004 KB |
testcase_30 | AC | 34 ms
60,100 KB |
testcase_31 | AC | 34 ms
182,996 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 Aunit = 0 def Xf(self,x,y): return max(x,y) #Xf = max def Af(self,a,b): return (a + b) % P #AのXへの作用 def operate(self,x,a): return (x + a) % P 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] + [0] * N) for j in range(N): now = seg.fold(j,j + 1) #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) #print(last) ans += pow(2,(i-1),P) * (pow(2,N - 1,P) - last) % P print(ans % P)