結果

問題 No.2265 Xor Range Substring Sum Query
ユーザー とりゐとりゐ
提出日時 2023-03-12 16:28:53
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 704 ms / 5,000 ms
コード長 1,566 bytes
コンパイル時間 2,178 ms
コンパイル使用メモリ 206,500 KB
実行使用メモリ 26,440 KB
最終ジャッジ日時 2024-09-25 00:30:32
合計ジャッジ時間 15,364 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 10 ms
26,048 KB
testcase_01 AC 9 ms
25,984 KB
testcase_02 AC 9 ms
25,856 KB
testcase_03 AC 10 ms
25,984 KB
testcase_04 AC 465 ms
26,368 KB
testcase_05 AC 462 ms
26,368 KB
testcase_06 AC 458 ms
26,304 KB
testcase_07 AC 475 ms
26,368 KB
testcase_08 AC 460 ms
26,308 KB
testcase_09 AC 652 ms
26,240 KB
testcase_10 AC 664 ms
26,304 KB
testcase_11 AC 645 ms
26,436 KB
testcase_12 AC 651 ms
26,440 KB
testcase_13 AC 659 ms
26,308 KB
testcase_14 AC 590 ms
26,304 KB
testcase_15 AC 601 ms
26,432 KB
testcase_16 AC 593 ms
26,440 KB
testcase_17 AC 596 ms
26,440 KB
testcase_18 AC 306 ms
26,308 KB
testcase_19 AC 303 ms
26,308 KB
testcase_20 AC 704 ms
26,436 KB
testcase_21 AC 675 ms
26,436 KB
testcase_22 AC 293 ms
26,204 KB
testcase_23 AC 295 ms
26,076 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
#include <atcoder/modint>
#define elif else if
 
using mint=atcoder::modint998244353;
using S=pair<mint,int>;
mint pow11[1<<18];
mint pow2[1<<18];
S node[10][1<<18];
int n,N,m,l,r;

S op(S L,S R){
  return {L.first*pow11[R.second]+R.first*pow2[L.second],L.second+R.second};
}

void merge(int i,int j){
  int L=j;
  int R=L^(1<<(i-1));
  node[i][L]=op(node[i-1][L],node[i-1][R]);
}

void build(){
  for(int i=0;i<m;i++){
    for(int j=0;j<N;j++){
      merge(i+1,j);
    }
  }
}

void update(int x,S k){
  node[0][x]=k;
  for(int i=0;i<m;i++){
    l=(x>>(i+1))<<(i+1);
    r=l+(1<<(i+1));
    for(int j=l;j<r;j++){
      merge(i+1,j);
    }
  }
}

S E={0,0};
S query(int L,int R,int X){
  S ans=E;
  for(int i=0;i<m;i++){
    if(((L>>i)&1)&&(L+(1<<i)<=R)){
      ans=op(ans,node[i][L^X]);
      L+=1<<i;
    }
  }

  while(L+(1<<m)<=R){
    ans=op(ans,node[m][L^X]);
    L+=1<<m;
  }

  for(int i=m-1;i>=0;--i){
    if(L+(1<<i)<=R){
      ans=op(ans,node[i][L^X]);
      L+=1<<i;
    }
  }
  return ans;
}

int main(){
  ios::sync_with_stdio(false);
  cin.tie(nullptr);
  cin>>n;
  N=1<<n;
  m=n/2;
  string s;
  cin>>s;

  for(int i=0;i<N;i++){
    node[0][i]={s[i]-'0',1};
  }

  pow11[0]=1;
  pow2[0]=1;
  for(int i=1;i<=N;i++){
    pow11[i]=pow11[i-1]*11;
    pow2[i]=pow2[i-1]*2;
  }
  
  build();

  int q,t,x,y,L,R,X;
  cin>>q;
  for(int tc=0;tc<q;tc++){
    cin>>t;
    if(t==1){
      cin>>x>>y;
      update(x,{y,1});
    }
    else{
      cin>>L>>R>>X;
      cout<<query(L,R+1,X).first.val()<<'\n';
    }
  }
}
0