A13726 | Mercenaries
时间限制1s
内存限制256MB
通过 / 提交0/0
题目描述
Polycarp plays a (yet another!) strategic computer game. In this game, he leads an army of mercenaries.
Polycarp wants to gather his army for a quest. There are $n$ mercenaries for hire, and the army should consist of some subset of them.
The $i$ -th mercenary can be chosen if the resulting number of chosen mercenaries is not less than $l_i$ (otherwise he deems the quest to be doomed) and not greater than $r_i$ (he doesn't want to share the trophies with too many other mercenaries). Furthermore, $m$ pairs of mercenaries hate each other and cannot be chosen for the same quest.
How many non-empty subsets does Polycarp need to consider? In other words, calculate the number of non-empty subsets of mercenaries such that the size of this subset belongs to $[l_i, r_i]$ for each chosen mercenary, and there are no two mercenaries in the subset that hate each other.
The answer may be large, so calculate it modulo $998244353$ .
Polycarp wants to gather his army for a quest. There are $n$ mercenaries for hire, and the army should consist of some subset of them.
The $i$ -th mercenary can be chosen if the resulting number of chosen mercenaries is not less than $l_i$ (otherwise he deems the quest to be doomed) and not greater than $r_i$ (he doesn't want to share the trophies with too many other mercenaries). Furthermore, $m$ pairs of mercenaries hate each other and cannot be chosen for the same quest.
How many non-empty subsets does Polycarp need to consider? In other words, calculate the number of non-empty subsets of mercenaries such that the size of this subset belongs to $[l_i, r_i]$ for each chosen mercenary, and there are no two mercenaries in the subset that hate each other.
The answer may be large, so calculate it modulo $998244353$ .
输入格式
The first line contains two integers $n$ and $m$ ( $1 \le n \le 3 \cdot 10^5$ , $0 \le m \le \min(20, \dfrac{n(n-1)}{2})$ ) — the number of mercenaries and the number of pairs of mercenaries that hate each other.
Then $n$ lines follow, the $i$ -th of them contains two integers $l_i$ and $r_i$ ( $1 \le l_i \le r_i \le n$ ).
Then $m$ lines follow, the $i$ -th of them contains two integers $a_i$ and $b_i$ ( $1 \le a_i < b_i \le n$ ) denoting that the mercenaries $a_i$ and $b_i$ hate each other. There are no two equal pairs in this list.
Then $n$ lines follow, the $i$ -th of them contains two integers $l_i$ and $r_i$ ( $1 \le l_i \le r_i \le n$ ).
Then $m$ lines follow, the $i$ -th of them contains two integers $a_i$ and $b_i$ ( $1 \le a_i < b_i \le n$ ) denoting that the mercenaries $a_i$ and $b_i$ hate each other. There are no two equal pairs in this list.
输出格式
Print one integer — the number of non-empty subsets meeting the constraints, taken modulo $998244353$ .
输入输出样例
输入 #1
3 0 1 1 2 3 1 3
输出 #1
3
输入 #2
3 1 1 1 2 3 1 3 2 3
输出 #2
2
暂无题解
C++ 编辑器
输入
输出
可保存默认模板;新题优先使用已保存模板。
当前快捷键仅展示,暂不支持修改。
- 撤销
Ctrl / ⌘ + Z - 重做
Ctrl / ⌘ + Y - 查找
Ctrl / ⌘ + F - 全选
Ctrl / ⌘ + A - 复制
Ctrl / ⌘ + C - 剪切
Ctrl / ⌘ + X - 粘贴
Ctrl / ⌘ + V - 自动排版
工具栏排版按钮 - 草稿保存
编辑时自动保存到本机
历史
提交记录
状态说明时间源码
AI
作答助手
你好,我是作答助手。可以问思路、复杂度、样例含义或代码报错原因;不会直接给出完整 AC 代码。
确定要清空代码吗?
提交通过
评测结果:Accepted