結果

問題 No.1504 ヌメロニム
ユーザー googol_S0googol_S0
提出日時 2021-05-07 22:55:59
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 485 ms / 2,000 ms
コード長 1,183 bytes
コンパイル時間 4,628 ms
コンパイル使用メモリ 270,692 KB
実行使用メモリ 22,824 KB
最終ジャッジ日時 2024-09-15 11:02:27
合計ジャッジ時間 17,906 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 25 ms
11,908 KB
testcase_01 AC 28 ms
12,036 KB
testcase_02 AC 30 ms
12,040 KB
testcase_03 AC 58 ms
11,912 KB
testcase_04 AC 30 ms
11,912 KB
testcase_05 AC 31 ms
11,904 KB
testcase_06 AC 28 ms
12,036 KB
testcase_07 AC 31 ms
12,032 KB
testcase_08 AC 25 ms
11,908 KB
testcase_09 AC 28 ms
12,128 KB
testcase_10 AC 27 ms
11,908 KB
testcase_11 AC 28 ms
12,032 KB
testcase_12 AC 29 ms
12,032 KB
testcase_13 AC 25 ms
12,016 KB
testcase_14 AC 27 ms
12,032 KB
testcase_15 AC 43 ms
12,032 KB
testcase_16 AC 61 ms
12,036 KB
testcase_17 AC 44 ms
12,032 KB
testcase_18 AC 53 ms
11,908 KB
testcase_19 AC 25 ms
12,040 KB
testcase_20 AC 58 ms
16,128 KB
testcase_21 AC 58 ms
16,008 KB
testcase_22 AC 58 ms
16,256 KB
testcase_23 AC 57 ms
16,132 KB
testcase_24 AC 469 ms
22,572 KB
testcase_25 AC 291 ms
21,968 KB
testcase_26 AC 477 ms
22,800 KB
testcase_27 AC 306 ms
22,176 KB
testcase_28 AC 304 ms
22,316 KB
testcase_29 AC 481 ms
22,744 KB
testcase_30 AC 476 ms
22,616 KB
testcase_31 AC 300 ms
22,064 KB
testcase_32 AC 309 ms
22,284 KB
testcase_33 AC 476 ms
22,564 KB
testcase_34 AC 99 ms
17,012 KB
testcase_35 AC 93 ms
16,996 KB
testcase_36 AC 265 ms
21,372 KB
testcase_37 AC 75 ms
16,400 KB
testcase_38 AC 480 ms
22,692 KB
testcase_39 AC 480 ms
22,824 KB
testcase_40 AC 485 ms
22,692 KB
testcase_41 AC 483 ms
22,824 KB
testcase_42 AC 482 ms
22,696 KB
testcase_43 AC 482 ms
22,776 KB
testcase_44 AC 478 ms
22,696 KB
testcase_45 AC 481 ms
22,692 KB
testcase_46 AC 481 ms
22,700 KB
testcase_47 AC 480 ms
22,824 KB
testcase_48 AC 300 ms
22,068 KB
testcase_49 AC 290 ms
21,840 KB
testcase_50 AC 59 ms
16,260 KB
testcase_51 AC 58 ms
16,136 KB
testcase_52 AC 43 ms
12,040 KB
testcase_53 AC 57 ms
16,004 KB
testcase_54 AC 36 ms
12,036 KB
testcase_55 AC 92 ms
16,988 KB
testcase_56 AC 64 ms
11,912 KB
testcase_57 AC 28 ms
11,912 KB
testcase_58 AC 53 ms
12,032 KB
testcase_59 AC 63 ms
12,032 KB
testcase_60 AC 60 ms
12,036 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
#include<atcoder/all>
using namespace std;
using namespace atcoder;
using ll=long long;
using mint=modint998244353;
const ll mod=998244353;
vector<mint> A(300000,0);
vector<mint> Y(300001,0);
vector<mint> g1(2,1);
vector<mint> g2(2,1);
vector<mint> inv(2,1);
int N;
void dfs(int l,int r){
  if(l+1>=r){
    return;
  }
  int x=(l+r)>>1;
  dfs(l,x);
  dfs(x,r);
  vector<mint> a(x-l);
  vector<mint> b(r-x);
  for(int i=l;i<x;i++){
    a[x-i-1]=(A[i].val())^1;
  }for(int i=x;i<r;i++){
    b[i-x]=A[i].val();
  }
  vector<mint> c=convolution(a,b);
  for(int i=0;i<(int)(c.size());i++){
    Y[i]+=c[i];
  }
  return;
}
int main(){
  cin>>N;
  string S;
  cin>>S;
  for(int i=0;i<N;i++){
    if(S[i]=='i'){
      A[i]=0;
    }else{
      A[i]=1;
    }
  }
  inv[0]=0;
  for(ll i=2;i<400003;i++){
    g1.push_back(g1[i-1]*i);
    inv.push_back(((-inv[mod%i])*(mod/i)));
    g2.push_back(g2[i-1]*inv[i]);
  }
  dfs(0,N);
  for(int i=0;i<=N;i++){
    Y[i]*=g1[i];
  }
  vector<mint> Z(N+1);
  for(int i=0;i<=N;i++){
    Z[N-i]=Y[i];
  }
  vector<mint> X=convolution(Z,g2);
  ll ANS=0;
  for(int i=0;i<=N;i++){
    ANS^=(X[i]*g2[N-i]).val();
  }
  cout<<ANS<<"\n";
}
0