A13285 | AND Segments
时间限制1s
内存限制256MB
通过 / 提交0/0
题目描述
You are given three integers $n$ , $k$ , $m$ and $m$ conditions $(l_1, r_1, x_1), (l_2, r_2, x_2), \dots, (l_m, r_m, x_m)$ .
Calculate the number of distinct arrays $a$ , consisting of $n$ integers such that:
- $0 \le a_i < 2^k$ for each $1 \le i \le n$ ;
- bitwise AND of numbers $a[l_i] \& a[l_i + 1] \& \dots \& a[r_i] = x_i$ for each $1 \le i \le m$ .
Two arrays $a$ and $b$ are considered different if there exists such a position $i$ that $a_i \neq b_i$ .
The number can be pretty large so print it modulo $998244353$ .
Calculate the number of distinct arrays $a$ , consisting of $n$ integers such that:
- $0 \le a_i < 2^k$ for each $1 \le i \le n$ ;
- bitwise AND of numbers $a[l_i] \& a[l_i + 1] \& \dots \& a[r_i] = x_i$ for each $1 \le i \le m$ .
Two arrays $a$ and $b$ are considered different if there exists such a position $i$ that $a_i \neq b_i$ .
The number can be pretty large so print it modulo $998244353$ .
输入格式
The first line contains three integers $n$ , $k$ and $m$ ( $1 \le n \le 5 \cdot 10^5$ , $1 \le k \le 30$ , $0 \le m \le 5 \cdot 10^5$ ) — the length of the array $a$ , the value such that all numbers in $a$ should be smaller than $2^k$ and the number of conditions, respectively.
Each of the next $m$ lines contains the description of a condition $l_i$ , $r_i$ and $x_i$ ( $1 \le l_i \le r_i \le n$ , $0 \le x_i < 2^k$ ) — the borders of the condition segment and the required bitwise AND value on it.
Each of the next $m$ lines contains the description of a condition $l_i$ , $r_i$ and $x_i$ ( $1 \le l_i \le r_i \le n$ , $0 \le x_i < 2^k$ ) — the borders of the condition segment and the required bitwise AND value on it.
输出格式
Print a single integer — the number of distinct arrays $a$ that satisfy all the above conditions modulo $998244353$ .
输入输出样例
输入 #1
4 3 2 1 3 3 3 4 6
输出 #1
3
输入 #2
5 2 3 1 3 2 2 5 0 3 3 3
输出 #2
33
You can recall what is a bitwise AND operation [here](https://en.wikipedia.org/wiki/Bitwise_operation#AND).
In the first example, the answer is the following arrays: $[3, 3, 7, 6]$ , $[3, 7, 7, 6]$ and $[7, 3, 7, 6]$ .
In the first example, the answer is the following arrays: $[3, 3, 7, 6]$ , $[3, 7, 7, 6]$ and $[7, 3, 7, 6]$ .
C++ 编辑器
输入
输出
可保存默认模板;新题优先使用已保存模板。
当前快捷键仅展示,暂不支持修改。
- 撤销
Ctrl / ⌘ + Z - 重做
Ctrl / ⌘ + Y - 查找
Ctrl / ⌘ + F - 全选
Ctrl / ⌘ + A - 复制
Ctrl / ⌘ + C - 剪切
Ctrl / ⌘ + X - 粘贴
Ctrl / ⌘ + V - 自动排版
工具栏排版按钮 - 草稿保存
编辑时自动保存到本机
历史
提交记录
状态说明时间源码
AI
作答助手
你好,我是作答助手。可以问思路、复杂度、样例含义或代码报错原因;不会直接给出完整 AC 代码。
确定要清空代码吗?
提交通过
评测结果:Accepted