結果

問題 No.2966 Simple Plus Minus Problem
ユーザー shobonvipshobonvip
提出日時 2024-11-16 20:15:18
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 2,268 bytes
コンパイル時間 4,929 ms
コンパイル使用メモリ 271,628 KB
実行使用メモリ 23,944 KB
最終ジャッジ日時 2024-11-16 20:15:29
合計ジャッジ時間 11,431 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 18 ms
11,136 KB
testcase_01 AC 13 ms
11,264 KB
testcase_02 AC 14 ms
11,264 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 AC 14 ms
11,264 KB
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 16 ms
11,392 KB
testcase_10 WA -
testcase_11 WA -
testcase_12 AC 14 ms
11,392 KB
testcase_13 AC 15 ms
11,520 KB
testcase_14 AC 14 ms
11,136 KB
testcase_15 WA -
testcase_16 AC 14 ms
11,328 KB
testcase_17 AC 15 ms
11,392 KB
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 AC 14 ms
11,316 KB
testcase_22 WA -
testcase_23 WA -
testcase_24 AC 19 ms
11,904 KB
testcase_25 WA -
testcase_26 AC 15 ms
11,520 KB
testcase_27 AC 19 ms
11,776 KB
testcase_28 AC 14 ms
11,392 KB
testcase_29 AC 20 ms
11,716 KB
testcase_30 AC 15 ms
11,264 KB
testcase_31 WA -
testcase_32 WA -
testcase_33 AC 14 ms
11,264 KB
testcase_34 AC 67 ms
17,532 KB
testcase_35 AC 112 ms
23,404 KB
testcase_36 AC 74 ms
17,920 KB
testcase_37 WA -
testcase_38 WA -
testcase_39 WA -
testcase_40 WA -
testcase_41 WA -
testcase_42 WA -
testcase_43 WA -
testcase_44 AC 112 ms
23,188 KB
testcase_45 AC 120 ms
23,928 KB
testcase_46 WA -
testcase_47 WA -
testcase_48 WA -
testcase_49 AC 118 ms
23,212 KB
testcase_50 WA -
testcase_51 AC 100 ms
22,332 KB
testcase_52 AC 118 ms
23,936 KB
testcase_53 WA -
testcase_54 WA -
testcase_55 WA -
testcase_56 WA -
権限があれば一括ダウンロードができます

ソースコード

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{
			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