結果
| 問題 |
No.1067 #いろいろな色 / Red and Blue and more various colors (Middle)
|
| コンテスト | |
| ユーザー |
shobonvip
|
| 提出日時 | 2024-11-12 01:24:32 |
| 言語 | C++17 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 1,997 bytes |
| コンパイル時間 | 4,609 ms |
| コンパイル使用メモリ | 262,064 KB |
| 最終ジャッジ日時 | 2025-02-25 03:57:44 |
|
ジャッジサーバーID (参考情報) |
judge5 / judge5 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 1 |
| other | AC * 22 WA * 3 |
ソースコード
/**
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';
}
}
shobonvip