結果

問題 No.2966 Simple Plus Minus Problem
ユーザー shobonvipshobonvip
提出日時 2024-11-16 20:19:54
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 123 ms / 2,567 ms
コード長 2,310 bytes
コンパイル時間 4,186 ms
コンパイル使用メモリ 271,512 KB
実行使用メモリ 24,064 KB
最終ジャッジ日時 2024-11-16 20:20:07
合計ジャッジ時間 10,877 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 14 ms
11,320 KB
testcase_01 AC 15 ms
11,192 KB
testcase_02 AC 14 ms
11,264 KB
testcase_03 AC 99 ms
22,640 KB
testcase_04 AC 109 ms
23,420 KB
testcase_05 AC 15 ms
11,264 KB
testcase_06 AC 14 ms
11,192 KB
testcase_07 AC 15 ms
11,444 KB
testcase_08 AC 14 ms
11,320 KB
testcase_09 AC 17 ms
11,392 KB
testcase_10 AC 14 ms
11,192 KB
testcase_11 AC 16 ms
11,392 KB
testcase_12 AC 15 ms
11,188 KB
testcase_13 AC 16 ms
11,572 KB
testcase_14 AC 14 ms
11,264 KB
testcase_15 AC 14 ms
11,324 KB
testcase_16 AC 14 ms
11,324 KB
testcase_17 AC 15 ms
11,392 KB
testcase_18 AC 15 ms
11,324 KB
testcase_19 AC 15 ms
11,520 KB
testcase_20 AC 16 ms
11,464 KB
testcase_21 AC 14 ms
11,324 KB
testcase_22 AC 14 ms
11,316 KB
testcase_23 AC 15 ms
11,520 KB
testcase_24 AC 19 ms
11,776 KB
testcase_25 AC 18 ms
11,588 KB
testcase_26 AC 16 ms
11,576 KB
testcase_27 AC 19 ms
11,776 KB
testcase_28 AC 15 ms
11,392 KB
testcase_29 AC 18 ms
11,776 KB
testcase_30 AC 15 ms
11,264 KB
testcase_31 AC 16 ms
11,460 KB
testcase_32 AC 14 ms
11,264 KB
testcase_33 AC 14 ms
11,264 KB
testcase_34 AC 64 ms
17,532 KB
testcase_35 AC 105 ms
23,400 KB
testcase_36 AC 93 ms
18,048 KB
testcase_37 AC 62 ms
17,464 KB
testcase_38 AC 93 ms
22,680 KB
testcase_39 AC 94 ms
22,788 KB
testcase_40 AC 65 ms
18,060 KB
testcase_41 AC 101 ms
23,468 KB
testcase_42 AC 93 ms
22,772 KB
testcase_43 AC 102 ms
23,356 KB
testcase_44 AC 104 ms
23,060 KB
testcase_45 AC 123 ms
23,800 KB
testcase_46 AC 106 ms
23,752 KB
testcase_47 AC 93 ms
22,864 KB
testcase_48 AC 109 ms
23,460 KB
testcase_49 AC 103 ms
23,208 KB
testcase_50 AC 67 ms
18,000 KB
testcase_51 AC 95 ms
22,336 KB
testcase_52 AC 117 ms
24,064 KB
testcase_53 AC 110 ms
23,940 KB
testcase_54 AC 108 ms
23,812 KB
testcase_55 AC 108 ms
23,944 KB
testcase_56 AC 110 ms
23,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

/**
	author:  shobonvip
	created: 2024.11.16 19:57:51
**/

#include<bits/stdc++.h>
using namespace std;

//* ATCODER
#include<atcoder/all>
using namespace atcoder;
typedef modint998244353 mint;
//*/

/* BOOST MULTIPRECISION
#include<boost/multiprecision/cpp_int.hpp>
using namespace boost::multiprecision;
//*/

typedef long long ll;

#define rep(i, s, n) for (int i = (int)(s); i < (int)(n); i++)
#define rrep(i, s, n) for (int i = (int)(n)-1; i >= (int)(s); i--)
#define all(v) v.begin(), v.end()

template <typename T> bool chmin(T &a, const T &b) {
	if (a <= b) return false;
	a = b;
	return true;
}

template <typename T> bool chmax(T &a, const T &b) {
	if (a >= b) return false;
	a = b;
	return true;
}

template <typename T> T max(vector<T> &a){
	assert(!a.empty());
	T ret = a[0];
	for (int i=0; i<(int)a.size(); i++) chmax(ret, a[i]);
	return ret;
}

template <typename T> T min(vector<T> &a){
	assert(!a.empty());
	T ret = a[0];
	for (int i=0; i<(int)a.size(); i++) chmin(ret, a[i]);
	return ret;
}

template <typename T> T sum(vector<T> &a){
	T ret = 0;
	for (int i=0; i<(int)a.size(); i++) ret += a[i];
	return ret;
}

//defmodfact
const int COMinitMAX = 998244;
mint fact[COMinitMAX+1], factinv[COMinitMAX+1];

void modfact(){
	fact[0] = 1;
	for (int i=1; i<=COMinitMAX; i++){
		fact[i] = fact[i-1] * i;
	}
	factinv[COMinitMAX] = fact[COMinitMAX].inv();
	for (int i=COMinitMAX-1; i>=0; i--){
		factinv[i] = factinv[i+1] * (i+1);
	}
}

mint binom(int a, int b){
	if (a<b || b<0) return mint(0);
	return fact[a]*factinv[b]*factinv[a-b];
}
//--------

mint op(mint a,mint b) {
	return a * b;
}
mint e(){
	return 1;
}

int main(){
	ios_base::sync_with_stdio(false);
	cin.tie(NULL);
	
	modfact();
	ll n, k; cin >> n >> k;
	vector<ll> a(n);
	rep(i,0,n) cin >> a[i];

	vector<mint> f(n);
	rep(i,0,n) {
		if (i % 2 == 0) {
			f[i] = a[i];
		}else if (k % 2 == 0){
			f[i] = a[i];
		}else{
			f[i] = - a[i];
		}
	}

	segtree<mint,op,e> kukan(n*2);
	rep(i,0,n) {
		kukan.set(i,  (k+1)/2 + i);
	}
	
	vector<mint> g(n);
	rep(i,0,n) {
		if (i % 2 == 0) {
			g[i] = kukan.prod(0, i/2) * factinv[i/2];
		}else if(k % 2 == 1){
			g[i] = kukan.prod(0, i/2) * factinv[i/2];
		}
		//cout << g[i].val() << ' ';
	}

	vector<mint> h = convolution(f, g);
	rep(i,0,n) {
		cout << h[i].val() << ' ';
	}

	cout << '\n';
}

0