結果

問題 No.1067 #いろいろな色 / Red and Blue and more various colors (Middle)
ユーザー shobonvipshobonvip
提出日時 2024-11-12 01:24:32
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,997 bytes
コンパイル時間 5,189 ms
コンパイル使用メモリ 275,440 KB
実行使用メモリ 66,304 KB
最終ジャッジ日時 2024-11-12 01:24:41
合計ジャッジ時間 8,787 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 3 ms
5,248 KB
testcase_03 AC 2 ms
5,248 KB
testcase_04 AC 4 ms
5,248 KB
testcase_05 AC 4 ms
5,248 KB
testcase_06 AC 3 ms
5,248 KB
testcase_07 AC 3 ms
5,248 KB
testcase_08 AC 2 ms
5,248 KB
testcase_09 AC 3 ms
5,248 KB
testcase_10 AC 2 ms
5,248 KB
testcase_11 AC 174 ms
21,376 KB
testcase_12 AC 195 ms
29,184 KB
testcase_13 AC 165 ms
10,368 KB
testcase_14 AC 83 ms
5,376 KB
testcase_15 AC 59 ms
10,624 KB
testcase_16 AC 94 ms
20,608 KB
testcase_17 AC 15 ms
6,016 KB
testcase_18 AC 121 ms
13,184 KB
testcase_19 AC 90 ms
5,376 KB
testcase_20 AC 148 ms
30,848 KB
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 AC 2 ms
5,248 KB
testcase_25 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];

	vector<mint> ans(n+1, 0);
	ans[0] = 1;
	rep(i,0,n){
		ans[0] *= a[i];
	}

	set<tuple<ll,ll,ll>> event;
	rep(i,0,q){
		ll l, r, p; cin >> l >> r >> p;
		for (ll j=l; j<=r; j++){
			event.insert(make_tuple(- j, i, p));
		}		
	}

	rep(i,0,n){
		event.insert(make_tuple(- a[i], - 1, 0));
	}

	vector<ll> ret_non998(q);
	for (auto [t, typ, v]: event) {
		t = -t;
		typ = -typ;
		if (typ <= 0) {
			ret_non998[- typ] ^= ans[v].val();
		}else{
			mint keis = mint(t).inv();
			rep(j,0,n+1){
				ans[j] *= keis;
			}
			vector<mint> ndp(n+1);
			rep(j,0,n+1){
				if(j+1 <= n){
					ndp[j+1] += ans[j];
				}
				ndp[j] += ans[j] * (t - 1);
			}
			swap(ans, ndp);
		}
	}

	rep(i,0,q){
		cout << mint(ret_non998[i]).val() << '\n';
	}

}

0