ZR1153
ZR1153
首先我们可以发现一个比较简单的容斥做法
直接暴力枚举\(2^m\)个限制强制不合法,算贡献
注意如果两个限制冲突那么答案为0
直接暴力差分就好了
这样就有了快乐的\(30\)分了
接下来考虑对容斥进行DP
把所有点区间按照右端点排序,如果出来两个颜色相同的区间一个包含了另外一个,那么大区间是没有用的,因为小区间满足条件大区间一定满足
我们设\(f_{i}\)表示满足第\(i\)个限制的带容斥系数的方案数
那么转移我们就枚举上一个没有交的区间
\]
其中\(g_x\)表示\(1-x\)位置满足\(1-x\)的所有容斥之后的限制的前缀和
也就是说
\]
就是看看第\(i\)位置上的限制满足还是不满足综合考虑的前缀和
继续回到求\(f_i\)的式子
既然\(i\)的这个限制要容斥,那么强制他不被满足,前面就是对所有和他没有交的限制求一个总的容斥
后面算有交的部分的贡献,必须满足和当前限制的颜色相同,
我们排序之后,有交的集合是一个区间,我们二分找到对应位置维护前缀和即可
#include<cstdio>
#include<iostream>
#include<queue>
#include<algorithm>
#include<cstring>
#include<cctype>
#include<vector>
#include<ctime>
#include<cmath>
#include<set>
#include<map>
#define LL long long
#define pii pair<int,int>
#define mk make_pair
#define fi first
#define se second
using namespace std;
const int N = 4e5 + 3;
const LL mod = 998244353;
struct seg{
int li,ri;
int xi;
}a[N],b[N];
vector <pii> co[N];
vector <LL> h[N];
LL f[N],g[N];
int n,m,s,cnt;
inline int read(){
int v = 0,c = 1;char ch = getchar();
while(!isdigit(ch)){
if(ch == '-') c = -1;
ch = getchar();
}
while(isdigit(ch)){
v = v * 10 + ch - 48;
ch = getchar();
}
return v * c;
}
inline bool cmp(seg x,seg y){
return x.ri < y.ri || (x.ri == y.li && x.li > y.li);
}
inline LL find(int x,int rr){
// printf("%d %d\n",x,rr);
int l = 0,r = h[x].size() - 1,ans = -1;
if(r < 0) return 0;
while(l <= r){
int mid = (l + r) >> 1;
if(co[x][mid].se < rr) l = mid + 1,ans = mid;
else r = mid - 1;
}
// printf("%d %d %d %lld\n",l,r,ans,ans == -1 ? h[x].back() : h[x].back() - h[x][ans]);
return ans == -1 ? h[x].back() : h[x].back() - h[x][ans];
}
inline LL mo(LL x){
if(x >= mod) x-= mod;
return x;
}
int main(){
n = read(),m = read(),s = read();
for(int i = 1;i <= m;++i){
a[i].li = read();
a[i].ri = read();
a[i].xi = read();
}
sort(a + 1,a + m + 1,cmp);
for(int i = 1;i <= m;++i){
bool flag = 0;
if(!co[a[i].xi].size()) co[a[i].xi].push_back(mk(a[i].li,a[i].ri));
else{
pii x = co[a[i].xi].back();
if(x.fi >= a[i].li && x.se <= a[i].ri) flag = 1;
else co[a[i].xi].push_back(mk(a[i].li,a[i].ri));
}
if(!flag) b[++cnt] = a[i];
}
m = cnt;
memcpy(a,b,sizeof(a));
// puts("new::");
// for(int i = 1;i <= m;++i) cerr << a[i].li << " " << a[i].ri << " " << a[i].xi << endl;
// puts("next::");
int now = 1;
f[0] = g[0] = 1;
for(int i = 1;i <= m;++i){
// cerr << "dsdas::"<< a[i].li << " " << a[i].ri << " " << a[i].xi << endl;
for(;now < a[i].ri;now++) g[now] = (g[now] + g[now - 1] * s) % mod;
f[i] = (-g[a[i].li - 1] + mod);
f[i] -= find(a[i].xi,a[i].li);
if(f[i] < 0) f[i] += mod;
LL gg = h[a[i].xi].empty() ? 0 : h[a[i].xi].back();
h[a[i].xi].push_back(mo(gg + f[i]));
g[a[i].ri] = mo(g[a[i].ri] + f[i]);
}
for(;now <= n;++now) g[now] = (g[now] + g[now - 1] * s) % mod;
printf("%lld\n",g[n]);
return 0;
}
ZR1153的更多相关文章
随机推荐
- Android开发-API指南-<activity-alias>[原创译文]
http://blog.sina.com.cn/s/blog_48d491300100zmg5.html
- day25 CMDB(1)
CMDB项目介绍 参考地址: http://www.cnblogs.com/wupeiqi/articles/4556300.html http://www.cnblogs.com/wupeiqi/a ...
- 【git基本操作】总结
"git fetch GitLab: Your account has been blocked.fatal: Could not read from remote repository. ...
- hdu 2196【树形dp】
http://acm.hdu.edu.cn/showproblem.php?pid=2196 题意:找出树中每个节点到其它点的最远距离. 题解: 首先这是一棵树,对于节点v来说,它到达其它点的最远距离 ...
- 2019-7-20-win10-uwp-使用-msbuild-命令行编译-UWP-程序
title author date CreateTime categories win10 uwp 使用 msbuild 命令行编译 UWP 程序 lindexi 2019-07-20 21:56:2 ...
- Gym - 101617D_Jumping Haybales(BFS)
Sample Input 4 2 .### #... .#.. #.#. 3 1 .#. .#. .#. Sample Output 4 -1 题意:给一个n*n的图,每次最多能跳k个格子,只能向南( ...
- C# 设计模式 责任链
责任链模式是一种对象的行为模式.在责任链模式里,很多对象由每一个对象对其下家的引用而连接起来形成一条链.请求在这个链上传递,直到链上的某一个对象决定处理此请求.发出这个请求的客户端并不知道链上的哪一个 ...
- 当flex遇到white-space: nowrap; 排版就飞了的神奇问题 吐血
在做一个移动端排班的时候需要某一行的字超出的部分用省略号代替 然后写着发现后面排版乱了 HTML结构如下 我想让第二个span的内容加省略号 css正确的代码如下 .list { width: 1 ...
- larave5.6 将Excel文件数据导入数据库代码实例
<?php namespace App\Admin\Controllers; use App\AdminUser; use Illuminate\Http\Request; use Excel; ...
- C#面向对象--练习题
public class Program { //用户自定义:我们自己定义这种数据类型 public struct jiegouti// 结构体前面加上public, 可供外界访问 { public ...