A12887 | Balanced Domino Placements
时间限制1s
内存限制256MB
通过 / 提交0/0
题目描述
Consider a square grid with $h$ rows and $w$ columns with some dominoes on it. Each domino covers exactly two cells of the grid that share a common side. Every cell is covered by at most one domino.
Let's call a placement of dominoes on the grid perfectly balanced if no row and no column contains a pair of cells covered by two different dominoes. In other words, every row and column may contain no covered cells, one covered cell, or two covered cells that belong to the same domino.
You are given a perfectly balanced placement of dominoes on a grid. Find the number of ways to place zero or more extra dominoes on this grid to keep the placement perfectly balanced. Output this number modulo $998\,244\,353$ .
Let's call a placement of dominoes on the grid perfectly balanced if no row and no column contains a pair of cells covered by two different dominoes. In other words, every row and column may contain no covered cells, one covered cell, or two covered cells that belong to the same domino.
You are given a perfectly balanced placement of dominoes on a grid. Find the number of ways to place zero or more extra dominoes on this grid to keep the placement perfectly balanced. Output this number modulo $998\,244\,353$ .
输入格式
The first line contains three integers $h$ , $w$ , and $n$ ( $1 \le h, w \le 3600$ ; $0 \le n \le 2400$ ), denoting the dimensions of the grid and the number of already placed dominoes. The rows are numbered from $1$ to $h$ , and the columns are numbered from $1$ to $w$ .
Each of the next $n$ lines contains four integers $r_{i, 1}, c_{i, 1}, r_{i, 2}, c_{i, 2}$ ( $1 \le r_{i, 1} \le r_{i, 2} \le h$ ; $1 \le c_{i, 1} \le c_{i, 2} \le w$ ), denoting the row id and the column id of the cells covered by the $i$ -th domino. Cells $(r_{i, 1}, c_{i, 1})$ and $(r_{i, 2}, c_{i, 2})$ are distinct and share a common side.
The given domino placement is perfectly balanced.
Each of the next $n$ lines contains four integers $r_{i, 1}, c_{i, 1}, r_{i, 2}, c_{i, 2}$ ( $1 \le r_{i, 1} \le r_{i, 2} \le h$ ; $1 \le c_{i, 1} \le c_{i, 2} \le w$ ), denoting the row id and the column id of the cells covered by the $i$ -th domino. Cells $(r_{i, 1}, c_{i, 1})$ and $(r_{i, 2}, c_{i, 2})$ are distinct and share a common side.
The given domino placement is perfectly balanced.
输出格式
Output the number of ways to place zero or more extra dominoes on the grid to keep the placement perfectly balanced, modulo $998\,244\,353$ .
输入输出样例
输入 #1
5 7 2 3 1 3 2 4 4 4 5
输出 #1
8
输入 #2
5 4 2 1 2 2 2 4 3 4 4
输出 #2
1
输入 #3
23 42 0
输出 #3
102848351
In the first example, the initial grid looks like this:

Here are $8$ ways to place zero or more extra dominoes to keep the placement perfectly balanced:

In the second example, the initial grid looks like this:

No extra dominoes can be placed here.

Here are $8$ ways to place zero or more extra dominoes to keep the placement perfectly balanced:

In the second example, the initial grid looks like this:

No extra dominoes can be placed here.
C++ 编辑器
输入
输出
可保存默认模板;新题优先使用已保存模板。
当前快捷键仅展示,暂不支持修改。
- 撤销
Ctrl / ⌘ + Z - 重做
Ctrl / ⌘ + Y - 查找
Ctrl / ⌘ + F - 全选
Ctrl / ⌘ + A - 复制
Ctrl / ⌘ + C - 剪切
Ctrl / ⌘ + X - 粘贴
Ctrl / ⌘ + V - 自动排版
工具栏排版按钮 - 草稿保存
编辑时自动保存到本机
历史
提交记录
状态说明时间源码
AI
作答助手
你好,我是作答助手。可以问思路、复杂度、样例含义或代码报错原因;不会直接给出完整 AC 代码。
确定要清空代码吗?
提交通过
评测结果:Accepted