A14294 | Omkar and Forest
时间限制1s
内存限制256MB
通过 / 提交0/0
题目描述
Omkar's most recent follower, Ajit, has entered the Holy Forest. Ajit realizes that Omkar's forest is an $n$ by $m$ grid ( $1 \leq n, m \leq 2000$ ) of some non-negative integers. Since the forest is blessed by Omkar, it satisfies some special conditions:
1. For any two adjacent (sharing a side) cells, the absolute value of the difference of numbers in them is at most $1$ .
2. If the number in some cell is strictly larger than $0$ , it should be strictly greater than the number in at least one of the cells adjacent to it.
Unfortunately, Ajit is not fully worthy of Omkar's powers yet. He sees each cell as a "0" or a "#". If a cell is labeled as "0", then the number in it must equal $0$ . Otherwise, the number in it can be any nonnegative integer.
Determine how many different assignments of elements exist such that these special conditions are satisfied. Two assignments are considered different if there exists at least one cell such that the numbers written in it in these assignments are different. Since the answer may be enormous, find the answer modulo $10^9+7$ .
1. For any two adjacent (sharing a side) cells, the absolute value of the difference of numbers in them is at most $1$ .
2. If the number in some cell is strictly larger than $0$ , it should be strictly greater than the number in at least one of the cells adjacent to it.
Unfortunately, Ajit is not fully worthy of Omkar's powers yet. He sees each cell as a "0" or a "#". If a cell is labeled as "0", then the number in it must equal $0$ . Otherwise, the number in it can be any nonnegative integer.
Determine how many different assignments of elements exist such that these special conditions are satisfied. Two assignments are considered different if there exists at least one cell such that the numbers written in it in these assignments are different. Since the answer may be enormous, find the answer modulo $10^9+7$ .
输入格式
Each test contains multiple test cases. The first line contains the number of test cases $t$ ( $1 \leq t \leq 100$ ). Description of the test cases follows.
The first line of each test case contains two integers $n$ and $m$ ( $1 \leq n, m \leq 2000, nm \geq 2$ ) – the dimensions of the forest.
$n$ lines follow, each consisting of one string of $m$ characters. Each of these characters is either a "0" or a "#".
It is guaranteed that the sum of $n$ over all test cases does not exceed $2000$ and the sum of $m$ over all test cases does not exceed $2000$ .
The first line of each test case contains two integers $n$ and $m$ ( $1 \leq n, m \leq 2000, nm \geq 2$ ) – the dimensions of the forest.
$n$ lines follow, each consisting of one string of $m$ characters. Each of these characters is either a "0" or a "#".
It is guaranteed that the sum of $n$ over all test cases does not exceed $2000$ and the sum of $m$ over all test cases does not exceed $2000$ .
输出格式
For each test case, print one integer: the number of valid configurations modulo $10^9+7$ .
输入输出样例
输入 #1
4 3 4 0000 00#0 0000 2 1 # # 1 2 ## 6 29 ############################# #000##0###0##0#0####0####000# #0#0##00#00##00####0#0###0#0# #0#0##0#0#0##00###00000##00## #000##0###0##0#0##0###0##0#0# #############################
输出 #1
2 3 3 319908071
For the first test case, the two valid assignments are
$0000\\ 0000\\ 0000$
and
$0000\\ 0010\\ 0000$
$0000\\ 0000\\ 0000$
and
$0000\\ 0010\\ 0000$
C++ 编辑器
输入
输出
可保存默认模板;新题优先使用已保存模板。
当前快捷键仅展示,暂不支持修改。
- 撤销
Ctrl / ⌘ + Z - 重做
Ctrl / ⌘ + Y - 查找
Ctrl / ⌘ + F - 全选
Ctrl / ⌘ + A - 复制
Ctrl / ⌘ + C - 剪切
Ctrl / ⌘ + X - 粘贴
Ctrl / ⌘ + V - 自动排版
工具栏排版按钮 - 草稿保存
编辑时自动保存到本机
历史
提交记录
状态说明时间源码
AI
作答助手
你好,我是作答助手。可以问思路、复杂度、样例含义或代码报错原因;不会直接给出完整 AC 代码。
确定要清空代码吗?
提交通过
评测结果:Accepted