結果

問題 No.1504 ヌメロニム
ユーザー milanis48663220milanis48663220
提出日時 2021-07-05 23:17:42
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 249 ms / 2,000 ms
コード長 2,391 bytes
コンパイル時間 2,719 ms
コンパイル使用メモリ 158,232 KB
実行使用メモリ 28,796 KB
最終ジャッジ日時 2024-07-01 12:03:23
合計ジャッジ時間 10,226 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 12 ms
7,040 KB
testcase_01 AC 11 ms
6,976 KB
testcase_02 AC 13 ms
7,040 KB
testcase_03 AC 12 ms
7,040 KB
testcase_04 AC 11 ms
7,008 KB
testcase_05 AC 12 ms
7,040 KB
testcase_06 AC 12 ms
6,980 KB
testcase_07 AC 11 ms
6,944 KB
testcase_08 AC 12 ms
7,040 KB
testcase_09 AC 11 ms
6,980 KB
testcase_10 AC 11 ms
7,040 KB
testcase_11 AC 11 ms
6,984 KB
testcase_12 AC 11 ms
6,940 KB
testcase_13 AC 11 ms
7,112 KB
testcase_14 AC 11 ms
6,980 KB
testcase_15 AC 11 ms
6,980 KB
testcase_16 AC 11 ms
6,944 KB
testcase_17 AC 11 ms
6,944 KB
testcase_18 AC 12 ms
6,980 KB
testcase_19 AC 11 ms
6,984 KB
testcase_20 AC 13 ms
7,260 KB
testcase_21 AC 12 ms
7,112 KB
testcase_22 AC 13 ms
7,236 KB
testcase_23 AC 11 ms
6,944 KB
testcase_24 AC 240 ms
27,952 KB
testcase_25 AC 146 ms
19,660 KB
testcase_26 AC 248 ms
28,616 KB
testcase_27 AC 161 ms
20,932 KB
testcase_28 AC 163 ms
21,076 KB
testcase_29 AC 242 ms
28,444 KB
testcase_30 AC 242 ms
28,260 KB
testcase_31 AC 153 ms
20,324 KB
testcase_32 AC 157 ms
21,012 KB
testcase_33 AC 242 ms
28,136 KB
testcase_34 AC 46 ms
10,184 KB
testcase_35 AC 39 ms
9,388 KB
testcase_36 AC 126 ms
17,256 KB
testcase_37 AC 26 ms
8,196 KB
testcase_38 AC 247 ms
28,532 KB
testcase_39 AC 248 ms
28,656 KB
testcase_40 AC 249 ms
28,656 KB
testcase_41 AC 247 ms
28,780 KB
testcase_42 AC 246 ms
28,656 KB
testcase_43 AC 247 ms
28,588 KB
testcase_44 AC 247 ms
28,656 KB
testcase_45 AC 246 ms
28,784 KB
testcase_46 AC 246 ms
28,796 KB
testcase_47 AC 249 ms
28,652 KB
testcase_48 AC 155 ms
20,348 KB
testcase_49 AC 147 ms
19,656 KB
testcase_50 AC 13 ms
7,040 KB
testcase_51 AC 12 ms
6,980 KB
testcase_52 AC 12 ms
6,984 KB
testcase_53 AC 12 ms
7,108 KB
testcase_54 AC 12 ms
6,944 KB
testcase_55 AC 40 ms
9,504 KB
testcase_56 AC 11 ms
6,940 KB
testcase_57 AC 11 ms
6,976 KB
testcase_58 AC 12 ms
6,944 KB
testcase_59 AC 12 ms
7,108 KB
testcase_60 AC 11 ms
6,976 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <algorithm>
#include <iomanip>
#include <vector>
#include <queue>
#include <set>
#include <map>
#include <tuple>
#include <cmath>
#include <numeric>
#include <functional>
#include <cassert>
#include <atcoder/modint>
#include <atcoder/convolution>

#define debug_value(x) cerr << "line" << __LINE__ << ":<" << __func__ << ">:" << #x << "=" << x << endl;
#define debug(x) cerr << "line" << __LINE__ << ":<" << __func__ << ">:" << x << endl;

template<class T> inline bool chmax(T& a, T b) { if (a < b) { a = b; return 1; } return 0; }
template<class T> inline bool chmin(T& a, T b) { if (a > b) { a = b; return 1; } return 0; }

using namespace std;
typedef long long ll;
using mint = atcoder::modint998244353;

const ll MOD = 998244353;

#define N_MAX 300002
mint inv[N_MAX],fac[N_MAX],finv[N_MAX];

void init(){
    fac[0]=1;fac[1]=1;
    finv[0]=1;finv[1]=1;
    inv[1]=1;
    for(int i=2;i<N_MAX;i++){
        inv[i]=mint(MOD)-inv[MOD%i]*(MOD/i);
        fac[i]=fac[i-1]*(ll) i;
        finv[i]=finv[i-1]*inv[i];
    }
}

mint pow(mint a, ll n) {
    assert(n >= 0);
	mint ans = 1;
	mint tmp = a;
	for (int i = 0; i <= 60; i++) {
		ll m = (ll)1 << i;
		if (m & n) {
		ans *= tmp;
		}
		tmp *= tmp;
	}
	return ans;
}

/**
 * a0+a1*(x+c)^1+ ... + an*(x+c)^nの係数を求める
 */ 
vector<mint> slide_polynomial(vector<mint> a, int c){
    int n = a.size();
    vector<mint> u(n), v(n);
    for(int i = 0; i < n; i++) {
        u[i] = a[i]*fac[i];
        v[i] = pow(mint(c), n-i-1)*finv[n-i-1];
    }
    auto w = atcoder::convolution(u, v);
    vector<mint> ans(n);
    for(int i = 0; i < n; i++) ans[i] = finv[i]*w[i+n-1];
    return ans;
}

void print(vector<mint> v){
    for(mint x: v) cout << x.val() << ' ';
    cout << endl;
}


int main(){
    ios::sync_with_stdio(false);
    cin.tie(0);
    cout << setprecision(10) << fixed;
    init();
    int n;
    string s;
    cin >> n >> s;
    vector<mint> vi(n), vn(n);
    for(int i = 0; i < n; i++){
        if(s[i] == 'n'){
            vn[i] = 1;
        }else{
            vi[n-i-1] = 1;
        }
    }
    auto v = atcoder::convolution(vn, vi);
    vector<mint> u(n-1); // iとnの間がk個のものがu[k]個ある
    for(int i = 1; i < n; i++) u[i-1] = v[i+n-1];
    auto f = slide_polynomial(u, 1);
    int ans = 0;
    for(int i = 0; i < n-1; i++) ans ^= f[i].val();
    cout << ans << endl;
}
0