結果

問題 No.1138 No Bingo!
ユーザー chocoruskchocorusk
提出日時 2020-07-27 07:46:27
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 186 ms / 3,000 ms
コード長 4,262 bytes
コンパイル時間 1,833 ms
コンパイル使用メモリ 137,408 KB
実行使用メモリ 16,068 KB
最終ジャッジ日時 2023-09-11 05:39:28
合計ジャッジ時間 5,554 ms
ジャッジサーバーID
(参考情報)
judge15 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,700 KB
testcase_01 AC 2 ms
5,408 KB
testcase_02 AC 2 ms
5,404 KB
testcase_03 AC 89 ms
11,500 KB
testcase_04 AC 186 ms
16,068 KB
testcase_05 AC 2 ms
5,524 KB
testcase_06 AC 2 ms
5,472 KB
testcase_07 AC 2 ms
5,700 KB
testcase_08 AC 2 ms
5,584 KB
testcase_09 AC 92 ms
12,080 KB
testcase_10 AC 179 ms
15,984 KB
testcase_11 AC 183 ms
15,688 KB
testcase_12 AC 46 ms
9,580 KB
testcase_13 AC 11 ms
5,676 KB
testcase_14 AC 182 ms
15,924 KB
testcase_15 AC 84 ms
11,228 KB
testcase_16 AC 179 ms
15,872 KB
testcase_17 AC 177 ms
15,792 KB
testcase_18 AC 178 ms
15,492 KB
testcase_19 AC 95 ms
12,092 KB
testcase_20 AC 180 ms
15,864 KB
testcase_21 AC 177 ms
15,576 KB
testcase_22 AC 174 ms
15,696 KB
testcase_23 AC 6 ms
5,592 KB
testcase_24 AC 92 ms
11,932 KB
testcase_25 AC 82 ms
11,380 KB
testcase_26 AC 46 ms
9,616 KB
testcase_27 AC 90 ms
11,636 KB
testcase_28 AC 45 ms
9,528 KB
testcase_29 AC 46 ms
9,496 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <cstdio>
#include <cstring>
#include <iostream>
#include <string>
#include <cmath>
#include <bitset>
#include <vector>
#include <map>
#include <set>
#include <queue>
#include <deque>
#include <algorithm>
#include <complex>
#include <unordered_map>
#include <unordered_set>
#include <random>
#include <cassert>
#include <fstream>
#include <utility>
#include <functional>
#include <time.h>
#include <stack>
#include <array>
#define popcount __builtin_popcount
using namespace std;
typedef long long int ll;
typedef pair<int, int> P;
template< int mod >
struct NumberTheoreticTransform {

  vector< int > rev, rts;
  int base, max_base, root;

  NumberTheoreticTransform() : base(1), rev{0, 1}, rts{0, 1} {
    assert(mod >= 3 && mod % 2 == 1);
    auto tmp = mod - 1;
    max_base = 0;
    while(tmp % 2 == 0) tmp >>= 1, max_base++;
    root = 2;
    while(mod_pow(root, (mod - 1) >> 1) == 1) ++root;
    assert(mod_pow(root, mod - 1) == 1);
    root = mod_pow(root, (mod - 1) >> max_base);
  }

  inline int mod_pow(int x, int n) {
    int ret = 1;
    while(n > 0) {
      if(n & 1) ret = mul(ret, x);
      x = mul(x, x);
      n >>= 1;
    }
    return ret;
  }

  inline int inverse(int x) {
    return mod_pow(x, mod - 2);
  }

  inline unsigned add(unsigned x, unsigned y) {
    x += y;
    if(x >= mod) x -= mod;
    return x;
  }

  inline unsigned mul(unsigned a, unsigned b) {
    return 1ull * a * b % (unsigned long long) mod;
  }

  void ensure_base(int nbase) {
    if(nbase <= base) return;
    rev.resize(1 << nbase);
    rts.resize(1 << nbase);
    for(int i = 0; i < (1 << nbase); i++) {
      rev[i] = (rev[i >> 1] >> 1) + ((i & 1) << (nbase - 1));
    }
    assert(nbase <= max_base);
    while(base < nbase) {
      int z = mod_pow(root, 1 << (max_base - 1 - base));
      for(int i = 1 << (base - 1); i < (1 << base); i++) {
        rts[i << 1] = rts[i];
        rts[(i << 1) + 1] = mul(rts[i], z);
      }
      ++base;
    }
  }


  void ntt(vector< int > &a) {
    const int n = (int) a.size();
    assert((n & (n - 1)) == 0);
    int zeros = __builtin_ctz(n);
    ensure_base(zeros);
    int shift = base - zeros;
    for(int i = 0; i < n; i++) {
      if(i < (rev[i] >> shift)) {
        swap(a[i], a[rev[i] >> shift]);
      }
    }
    for(int k = 1; k < n; k <<= 1) {
      for(int i = 0; i < n; i += 2 * k) {
        for(int j = 0; j < k; j++) {
          int z = mul(a[i + j + k], rts[j + k]);
          a[i + j + k] = add(a[i + j], mod - z);
          a[i + j] = add(a[i + j], z);
        }
      }
    }
  }


  vector< int > multiply(vector< int > a, vector< int > b) {
    int need = a.size() + b.size() - 1;
    int nbase = 1;
    while((1 << nbase) < need) nbase++;
    ensure_base(nbase);
    int sz = 1 << nbase;
    a.resize(sz, 0);
    b.resize(sz, 0);
    ntt(a);
    ntt(b);
    int inv_sz = inverse(sz);
    for(int i = 0; i < sz; i++) {
      a[i] = mul(a[i], mul(b[i], inv_sz));
    }
    reverse(a.begin() + 1, a.end());
    ntt(a);
    a.resize(need);
    return a;
  }
};
const int MOD=998244353;
NumberTheoreticTransform<MOD> ntt;
vector<int> pow(vector<int> v, int n){
	vector<int> ans{1};
	while(n){
		if(n&1){
			ans=ntt.multiply(ans, v);
		}
		v=ntt.multiply(v, v);
		n>>=1;
	}
	return ans;
}
ll powmod(ll a, ll k){
    ll ap=a, ans=1;
    while(k){
        if(k&1){
            ans*=ap;
            ans%=MOD;
        }
        ap=ap*ap;
        ap%=MOD;
        k>>=1;
    }
    return ans;
}
ll inv(ll a){
    return powmod(a, MOD-2);
}
ll f[1000010], invf[1000010];
void fac(int n){
    f[0]=1;
    for(ll i=1; i<=n; i++) f[i]=f[i-1]*i%MOD;
    invf[n]=inv(f[n]);
    for(ll i=n-1; i>=0; i--) invf[i]=invf[i+1]*(i+1)%MOD;
}
ll comb(int x, int y){
    if(!(0<=y && y<=x)) return 0;
    return f[x]*invf[y]%MOD*invf[x-y]%MOD;
}
int main()
{
	int n; cin>>n;
	vector<int> v{1, MOD-4, 2};
	auto a=pow(v, n/2);
	if(n&1){
		vector<int> b(n+1);
		for(int i=0; i<n; i++){
			b[i]+=a[i];
			if(b[i]>=MOD) b[i]-=MOD;
			b[i+1]+=MOD-a[i];
			if(b[i+1]>=MOD) b[i+1]-=MOD;
		}
		swap(a, b);
	}
	fac(n);
	ll s1=0, s0=0;
	for(int i=0; i<=n; i++){
		if(i&1) (s0+=MOD-comb(n, i)*f[n-i]%MOD)%=MOD;
		else (s0+=comb(n, i)*f[n-i])%=MOD;
		(s1+=a[i]*f[n-i])%=MOD;
	}
	cout<<(f[n]+(MOD-s0)*2+s1)%MOD<<endl;
	return 0;
}
0