結果
問題 | No.2611 Count 01 |
ユーザー | titia |
提出日時 | 2024-03-13 04:57:03 |
言語 | PyPy3 (7.3.15) |
結果 |
AC
|
実行時間 | 1,976 ms / 6,000 ms |
コード長 | 2,208 bytes |
コンパイル時間 | 271 ms |
コンパイル使用メモリ | 82,304 KB |
実行使用メモリ | 269,328 KB |
最終ジャッジ日時 | 2024-09-29 22:34:39 |
合計ジャッジ時間 | 40,103 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 37 ms
52,480 KB |
testcase_01 | AC | 40 ms
52,480 KB |
testcase_02 | AC | 44 ms
58,880 KB |
testcase_03 | AC | 1,943 ms
269,052 KB |
testcase_04 | AC | 1,792 ms
268,408 KB |
testcase_05 | AC | 1,817 ms
268,828 KB |
testcase_06 | AC | 1,801 ms
268,664 KB |
testcase_07 | AC | 1,849 ms
268,272 KB |
testcase_08 | AC | 1,922 ms
268,700 KB |
testcase_09 | AC | 1,976 ms
268,272 KB |
testcase_10 | AC | 1,769 ms
268,276 KB |
testcase_11 | AC | 1,868 ms
268,528 KB |
testcase_12 | AC | 1,794 ms
268,152 KB |
testcase_13 | AC | 1,824 ms
268,660 KB |
testcase_14 | AC | 1,761 ms
268,532 KB |
testcase_15 | AC | 1,810 ms
268,972 KB |
testcase_16 | AC | 1,832 ms
268,848 KB |
testcase_17 | AC | 1,833 ms
268,660 KB |
testcase_18 | AC | 1,858 ms
268,400 KB |
testcase_19 | AC | 1,767 ms
269,164 KB |
testcase_20 | AC | 1,796 ms
269,328 KB |
testcase_21 | AC | 1,776 ms
269,180 KB |
testcase_22 | AC | 1,777 ms
268,664 KB |
ソースコード
import sys input = sys.stdin.readline N,Q=map(int,input().split()) A=list(map(int,list(input().strip()))) mod=998244353 def seg_function(x,y): # Segment treeで扱うfunction ANS=[0,0,0,0,0,0,0,0,0,0] ANS[0]=x[0]+y[0] ANS[1]=x[1]+y[1] ANS[2]=x[2]+y[2] ANS[3]=x[3]+y[3]+x[9]*y[2]+y[6]*x[2]+x[7]*y[5]+x[8]*y[4] ANS[4]=x[4]+y[4]+x[0]*y[2] ANS[5]=x[5]+y[5]+x[1]*y[2] ANS[6]=x[6]+y[6]+x[0]*x[1]*y[2]+x[0]*y[5]+x[1]*y[4] ANS[7]=x[7]+y[7]+y[0]*x[2] ANS[8]=x[8]+y[8]+y[1]*x[2] ANS[9]=x[9]+y[9]+y[0]*y[1]*x[2]+y[0]*x[8]+y[1]*x[7] for i in range(10): ANS[i]%=mod return ANS seg_el=1<<(N.bit_length()) # Segment treeの台の要素数 SEG=[[0,0,0,0,0,0,0,0,0,0] for i in range(2*seg_el)] # 1-indexedなので、要素数2*seg_el.Segment treeの初期値で初期化 # 0の個数, 1の個数, 長さ, score, 左から見て累積0の個数の和,累積1の個数の和,その積の和,右から見て累積0の個数の和,累積1の個数の和,その積の和, for i in range(N): # Aを対応する箇所へupdate if A[i]==0: SEG[i+seg_el]=[1,0,1,0,1,0,0,1,0,0] else: SEG[i+seg_el]=[0,1,1,0,0,1,0,0,1,0] for i in range(seg_el-1,0,-1): # 親の部分もupdate SEG[i]=seg_function(SEG[i*2],SEG[i*2+1]) def update(n,x,seg_el): # A[n]をxへ更新 i=n+seg_el if x==0: SEG[i]=[1,0,1,0,1,0,0,1,0,0] else: SEG[i]=[0,1,1,0,0,1,0,0,1,0] i>>=1 # 子ノードへ while i!=0: SEG[i]=seg_function(SEG[i*2],SEG[i*2+1]) i>>=1 def getvalues(l,r): # 区間[l,r)に関するseg_functionを調べる L=l+seg_el R=r+seg_el ANS1=[0,0,0,0,0,0,0,0,0,0] ANS2=[0,0,0,0,0,0,0,0,0,0] while L<R: if L & 1: ANS1=seg_function(ANS1, SEG[L]) L+=1 if R & 1: R-=1 ANS2=seg_function(SEG[R], ANS2) L>>=1 R>>=1 return seg_function(ANS1, ANS2) for queries in range(Q): L=list(map(int,input().split())) if L[0]==1: x=L[1]-1 A[x]^=1 update(x,A[x],seg_el) else: x,y=L[1],L[2] print(getvalues(x-1,y)[3])