A15655 | Count Binary Strings
时间限制1s
内存限制256MB
通过 / 提交0/0
题目描述
You are given an integer $n$ . You have to calculate the number of binary (consisting of characters 0 and/or 1) strings $s$ meeting the following constraints.
For every pair of integers $(i, j)$ such that $1 \le i \le j \le n$ , an integer $a_{i,j}$ is given. It imposes the following constraint on the string $s_i s_{i+1} s_{i+2} \dots s_j$ :
- if $a_{i,j} = 1$ , all characters in $s_i s_{i+1} s_{i+2} \dots s_j$ should be the same;
- if $a_{i,j} = 2$ , there should be at least two different characters in $s_i s_{i+1} s_{i+2} \dots s_j$ ;
- if $a_{i,j} = 0$ , there are no additional constraints on the string $s_i s_{i+1} s_{i+2} \dots s_j$ .
Count the number of binary strings $s$ of length $n$ meeting the aforementioned constraints. Since the answer can be large, print it modulo $998244353$ .
For every pair of integers $(i, j)$ such that $1 \le i \le j \le n$ , an integer $a_{i,j}$ is given. It imposes the following constraint on the string $s_i s_{i+1} s_{i+2} \dots s_j$ :
- if $a_{i,j} = 1$ , all characters in $s_i s_{i+1} s_{i+2} \dots s_j$ should be the same;
- if $a_{i,j} = 2$ , there should be at least two different characters in $s_i s_{i+1} s_{i+2} \dots s_j$ ;
- if $a_{i,j} = 0$ , there are no additional constraints on the string $s_i s_{i+1} s_{i+2} \dots s_j$ .
Count the number of binary strings $s$ of length $n$ meeting the aforementioned constraints. Since the answer can be large, print it modulo $998244353$ .
输入格式
The first line contains one integer $n$ ( $2 \le n \le 100$ ).
Then $n$ lines follow. The $i$ -th of them contains $n-i+1$ integers $a_{i,i}, a_{i,i+1}, a_{i,i+2}, \dots, a_{i,n}$ ( $0 \le a_{i,j} \le 2$ ).
Then $n$ lines follow. The $i$ -th of them contains $n-i+1$ integers $a_{i,i}, a_{i,i+1}, a_{i,i+2}, \dots, a_{i,n}$ ( $0 \le a_{i,j} \le 2$ ).
输出格式
Print one integer — the number of strings meeting the constraints, taken modulo $998244353$ .
输入输出样例
输入 #1
3 1 0 2 1 0 1
输出 #1
6
输入 #2
3 1 1 2 1 0 1
输出 #2
2
输入 #3
3 1 2 1 1 0 1
输出 #3
0
输入 #4
3 2 0 2 0 1 1
输出 #4
0
In the first example, the strings meeting the constraints are 001, 010, 011, 100, 101, 110.
In the second example, the strings meeting the constraints are 001, 110.
In the second example, the strings meeting the constraints are 001, 110.
C++ 编辑器
输入
输出
可保存默认模板;新题优先使用已保存模板。
当前快捷键仅展示,暂不支持修改。
- 撤销
Ctrl / ⌘ + Z - 重做
Ctrl / ⌘ + Y - 查找
Ctrl / ⌘ + F - 全选
Ctrl / ⌘ + A - 复制
Ctrl / ⌘ + C - 剪切
Ctrl / ⌘ + X - 粘贴
Ctrl / ⌘ + V - 自动排版
工具栏排版按钮 - 草稿保存
编辑时自动保存到本机
历史
提交记录
状态说明时间源码
AI
作答助手
你好,我是作答助手。可以问思路、复杂度、样例含义或代码报错原因;不会直接给出完整 AC 代码。
确定要清空代码吗?
提交通过
评测结果:Accepted