結果
問題 | No.1891 Static Xor Range Composite Query |
ユーザー | googol_S0 |
提出日時 | 2022-04-04 18:18:55 |
言語 | PyPy3 (7.3.15) |
結果 |
AC
|
実行時間 | 2,685 ms / 5,000 ms |
コード長 | 1,491 bytes |
コンパイル時間 | 819 ms |
コンパイル使用メモリ | 82,540 KB |
実行使用メモリ | 341,372 KB |
最終ジャッジ日時 | 2024-11-25 10:21:26 |
合計ジャッジ時間 | 31,206 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 42 ms
54,144 KB |
testcase_01 | AC | 45 ms
54,784 KB |
testcase_02 | AC | 44 ms
54,784 KB |
testcase_03 | AC | 44 ms
55,168 KB |
testcase_04 | AC | 45 ms
55,040 KB |
testcase_05 | AC | 46 ms
54,784 KB |
testcase_06 | AC | 45 ms
55,168 KB |
testcase_07 | AC | 44 ms
55,040 KB |
testcase_08 | AC | 45 ms
54,912 KB |
testcase_09 | AC | 45 ms
54,912 KB |
testcase_10 | AC | 44 ms
55,296 KB |
testcase_11 | AC | 154 ms
79,728 KB |
testcase_12 | AC | 154 ms
79,556 KB |
testcase_13 | AC | 152 ms
79,692 KB |
testcase_14 | AC | 152 ms
79,688 KB |
testcase_15 | AC | 153 ms
79,896 KB |
testcase_16 | AC | 153 ms
80,212 KB |
testcase_17 | AC | 152 ms
79,676 KB |
testcase_18 | AC | 157 ms
80,464 KB |
testcase_19 | AC | 153 ms
79,820 KB |
testcase_20 | AC | 152 ms
79,820 KB |
testcase_21 | AC | 2,685 ms
341,252 KB |
testcase_22 | AC | 2,582 ms
341,372 KB |
testcase_23 | AC | 2,545 ms
341,124 KB |
testcase_24 | AC | 2,610 ms
341,000 KB |
testcase_25 | AC | 2,503 ms
341,120 KB |
testcase_26 | AC | 2,520 ms
341,260 KB |
testcase_27 | AC | 2,514 ms
340,988 KB |
testcase_28 | AC | 2,515 ms
341,112 KB |
testcase_29 | AC | 2,505 ms
341,120 KB |
testcase_30 | AC | 2,492 ms
340,984 KB |
ソースコード
mod=998244353 def f(x,y): if len(x)==0: return y if len(y)==0: return x n=len(x) r=[(0,0) for i in range(n*2)] for i in range(n): r[i]=((x[i][0]*y[i][1]+y[i][0])%mod,x[i][1]*y[i][1]%mod) r[i+n]=((y[i][0]*x[i][1]+x[i][0])%mod,y[i][1]*x[i][1]%mod) return r from copy import * def init(N,node,A,unit,func): n=1 while n<N: n<<=1 for i in range(n*2-1): if len(node)<=i: node.append(deepcopy(unit)) else: node[i]=deepcopy(unit) for i in range(len(A)): node[n-1+i]=deepcopy(A[i]) for i in range(n-2,-1,-1): node[i]=func(node[(i<<1)+1],node[(i<<1)+2]) node.append(func) node.append(unit) node.append(n) def upd(node,x,a): y=node[-1]+x node[y-1]=a while y>1: y=y>>1 node[y-1]=node[-3](node[(y<<1)-1],node[y<<1]) def g(x,y): return ((x[0]*y[1]+y[0])%mod,(x[1]*y[1])%mod) def query(node,l,r,p): x,y=l,r z=node[-1]-1 rr=(0,1) rl=(0,1) q=p while True: if x==y: return g(rl,rr) if x&1: rl=g(rl,node[(x^q)+z][p&(len(node[x+z])-1)]) x+=1 if y&1: rr=g(node[((y-1)^q)+z][p&(len(node[y+z-1])-1)],rr) if z==0: return g(rl,rr) x>>=1 y>>=1 z>>=1 q>>=1 import sys input=sys.stdin.buffer.readline N,Q=map(int,input().split()) A=[] for i in range(N): a,b=map(int,input().split()) A.append([(b,a)]) seg=[] init(N,seg,A,[],lambda x,y:f(x,y)) for i in range(Q): l,r,p,x=map(int,input().split()) v=query(seg,l,r,p) print((v[1]*x+v[0])%mod)