A15524 | Tick, Tock
时间限制1s
内存限制256MB
通过 / 提交0/0
题目描述
Tannhaus, the clockmaker in the town of Winden, makes mysterious clocks that measure time in $h$ hours numbered from $0$ to $h-1$ . One day, he decided to make a puzzle with these clocks.
The puzzle consists of an $n \times m$ grid of clocks, and each clock always displays some hour exactly (that is, it doesn't lie between two hours). In one move, he can choose any row or column and shift all clocks in that row or column one hour forward $^\dagger$ .
The grid of clocks is called solvable if it is possible to make all the clocks display the same time.
While building his puzzle, Tannhaus suddenly got worried that it might not be possible to make the grid solvable. Some cells of the grid have clocks already displaying a certain initial time, while the rest of the cells are empty.
Given the partially completed grid of clocks, find the number of ways $^\ddagger$ to assign clocks in the empty cells so that the grid is solvable. The answer can be enormous, so compute it modulo $10^9 + 7$ .
$^\dagger$ If a clock currently displays hour $t$ and is shifted one hour forward, then the clock will instead display hour $(t+1) \bmod h$ .
$^\ddagger$ Two assignments are different if there exists some cell with a clock that displays a different time in both arrangements.
The puzzle consists of an $n \times m$ grid of clocks, and each clock always displays some hour exactly (that is, it doesn't lie between two hours). In one move, he can choose any row or column and shift all clocks in that row or column one hour forward $^\dagger$ .
The grid of clocks is called solvable if it is possible to make all the clocks display the same time.
While building his puzzle, Tannhaus suddenly got worried that it might not be possible to make the grid solvable. Some cells of the grid have clocks already displaying a certain initial time, while the rest of the cells are empty.
Given the partially completed grid of clocks, find the number of ways $^\ddagger$ to assign clocks in the empty cells so that the grid is solvable. The answer can be enormous, so compute it modulo $10^9 + 7$ .
$^\dagger$ If a clock currently displays hour $t$ and is shifted one hour forward, then the clock will instead display hour $(t+1) \bmod h$ .
$^\ddagger$ Two assignments are different if there exists some cell with a clock that displays a different time in both arrangements.
输入格式
The first line of input contains $t$ ( $1 \leq t \leq 5 \cdot 10^4$ ) — the number of test cases.
The first line of each test case consists of 3 integers $n$ , $m$ , and $h$ ( $1 \leq n, m \leq 2 \cdot 10^5$ ; $1 \leq h \leq 10^9$ ) — the number of rows in the grid, the number of columns in the grid, and the number of the hours in the day respectively.
The next $n$ lines each contain $m$ integers, describing the clock grid. The integer $x$ ( $-1 \leq x < h$ ) in the $i$ -th row and the $j$ -th column represents the initial hour of the corresponding clock, or if $x = -1$ , an empty cell.
It is guaranteed that the sum of $n \cdot m$ over all test cases does not exceed $2 \cdot 10^5$ .
The first line of each test case consists of 3 integers $n$ , $m$ , and $h$ ( $1 \leq n, m \leq 2 \cdot 10^5$ ; $1 \leq h \leq 10^9$ ) — the number of rows in the grid, the number of columns in the grid, and the number of the hours in the day respectively.
The next $n$ lines each contain $m$ integers, describing the clock grid. The integer $x$ ( $-1 \leq x < h$ ) in the $i$ -th row and the $j$ -th column represents the initial hour of the corresponding clock, or if $x = -1$ , an empty cell.
It is guaranteed that the sum of $n \cdot m$ over all test cases does not exceed $2 \cdot 10^5$ .
输出格式
For each test case, output the number of ways to assign clocks in the empty cells so that the grid is solvable. The answer can be huge, so output it modulo $10^9 + 7$ .
输入输出样例
输入 #1
5 2 3 4 1 0 -1 -1 -1 2 2 2 10 1 2 3 5 4 5 1024 1 -1 -1 -1 -1 -1 -1 -1 1000 -1 -1 -1 -1 -1 69 420 -1 -1 999 -1 3 3 3 -1 -1 1 2 -1 1 2 -1 2 3 3 3 1 -1 2 -1 0 -1 -1 1 0
输出 #1
4 0 73741817 0 1
For the first sample, this is a possible configuration for the clocks:
| 1 | 0 | 3 |
| :-----------: | :-----------: | :-----------: |
| 0 | 3 | 2 |
This is solvable since we can:
1. Move the middle column forward one hour.
2. Move the third column forward one hour.
3. Move the third column forward one hour.
4. Move the second row forward one hour.
After that all the clocks show one hour.For the second test case, it can be shown that there are no possible solvable clock configurations.
| 1 | 0 | 3 |
| :-----------: | :-----------: | :-----------: |
| 0 | 3 | 2 |
This is solvable since we can:
1. Move the middle column forward one hour.
2. Move the third column forward one hour.
3. Move the third column forward one hour.
4. Move the second row forward one hour.
After that all the clocks show one hour.For the second test case, it can be shown that there are no possible solvable clock configurations.
C++ 编辑器
输入
输出
可保存默认模板;新题优先使用已保存模板。
当前快捷键仅展示,暂不支持修改。
- 撤销
Ctrl / ⌘ + Z - 重做
Ctrl / ⌘ + Y - 查找
Ctrl / ⌘ + F - 全选
Ctrl / ⌘ + A - 复制
Ctrl / ⌘ + C - 剪切
Ctrl / ⌘ + X - 粘贴
Ctrl / ⌘ + V - 自动排版
工具栏排版按钮 - 草稿保存
编辑时自动保存到本机
历史
提交记录
状态说明时间源码
AI
作答助手
你好,我是作答助手。可以问思路、复杂度、样例含义或代码报错原因;不会直接给出完整 AC 代码。
确定要清空代码吗?
提交通过
评测结果:Accepted