結果

問題 No.1068 #いろいろな色 / Red and Blue and more various colors (Hard)
ユーザー shobonvipshobonvip
提出日時 2024-11-12 01:11:33
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 328 ms / 3,500 ms
コード長 1,645 bytes
コンパイル時間 5,287 ms
コンパイル使用メモリ 273,500 KB
実行使用メモリ 16,000 KB
最終ジャッジ日時 2024-11-12 01:11:48
合計ジャッジ時間 13,801 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 2 ms
5,248 KB
testcase_03 AC 6 ms
5,248 KB
testcase_04 AC 6 ms
5,248 KB
testcase_05 AC 6 ms
5,248 KB
testcase_06 AC 5 ms
5,248 KB
testcase_07 AC 5 ms
5,248 KB
testcase_08 AC 5 ms
5,248 KB
testcase_09 AC 6 ms
5,248 KB
testcase_10 AC 4 ms
5,248 KB
testcase_11 AC 4 ms
5,248 KB
testcase_12 AC 3 ms
5,248 KB
testcase_13 AC 292 ms
16,000 KB
testcase_14 AC 306 ms
15,872 KB
testcase_15 AC 299 ms
16,000 KB
testcase_16 AC 286 ms
15,872 KB
testcase_17 AC 319 ms
15,872 KB
testcase_18 AC 312 ms
15,872 KB
testcase_19 AC 296 ms
15,872 KB
testcase_20 AC 328 ms
15,872 KB
testcase_21 AC 293 ms
16,000 KB
testcase_22 AC 317 ms
15,872 KB
testcase_23 AC 297 ms
15,872 KB
testcase_24 AC 320 ms
15,872 KB
testcase_25 AC 296 ms
15,872 KB
testcase_26 AC 320 ms
16,000 KB
testcase_27 AC 289 ms
16,000 KB
testcase_28 AC 322 ms
15,872 KB
testcase_29 AC 282 ms
16,000 KB
testcase_30 AC 314 ms
16,000 KB
testcase_31 AC 2 ms
5,248 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

/**
	author:  shobonvip
	created: 2024.11.12 01:09:32
**/

#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;
}

int main(){
	ios_base::sync_with_stdio(false);
	cin.tie(NULL);
	
	int n, q; cin >> n >> q;
	vector<ll> a(n);
	rep(i,0,n) cin >> a[i];
	deque<vector<mint>> deq;
	rep(i,0,n) {
		deq.push_back(vector<mint>{a[i]-1, 1});
	}

	while((int)deq.size() >= 2) {
		vector<mint> f1 = deq.front(); deq.pop_front();
		vector<mint> f2 = deq.front(); deq.pop_front();
		deq.push_back(convolution(f1, f2));
	}

	vector<mint> ans = deq.front();
	deq.pop_front();

	rep(i,0,q){
		ll b; cin >> b;
		cout << ans[b].val() << '\n';
	}
}

0