[codeforces 293]B. Distinct Paths

[codeforces 293]B. Distinct Paths

试题描述

You have a rectangular n × m-cell board. Some cells are already painted some of k colors. You need to paint each uncolored cell one of the k colors so that any path from the upper left square to the lower right one doesn't contain any two cells of the same color. The path can go only along side-adjacent cells and can only go down or right.

Print the number of possible paintings modulo 1000000007 (109 + 7).

输入

The first line contains three integers n, m, k (1 ≤ n, m ≤ 1000, 1 ≤ k ≤ 10). The next n lines contain m integers each — the board. The first of them contains m uppermost cells of the board from the left to the right and the second one contains m cells from the second uppermost row and so on. If a number in a line equals 0, then the corresponding cell isn't painted. Otherwise, this number represents the initial color of the board cell — an integer from 1 to k.

Consider all colors numbered from 1 to k in some manner.

输出

Print the number of possible paintings modulo  1000000007 (109 + 7).

输入示例

5 6 10
0 0 0 0 0 0
0 0 0 0 0 0
0 0 0 0 0 0
0 0 0 0 0 0
0 0 0 0 0 0

输出示例

3628800

数据规模及约定

见“输入

题解

容易发现当 n + m - 1 > k 时,答案永远是 0,所以真正需要计算的数据范围是 n, m <= 10 且 n + m <= 11,那么这个地图就很小了,最多有 25 个块。

然后我想状压 dp,发现根本没法转移。。。上网搜了一下题解发现是大爆搜 + 剪枝。。。

贴个传送门,上面两种剪枝讲得很清楚。(戳这里

#include <iostream>
#include <cstdio>
#include <algorithm>
#include <cmath>
#include <stack>
#include <vector>
#include <queue>
#include <cstring>
#include <string>
#include <map>
#include <set>
using namespace std;

const int BufferSize = 1 << 16;
char buffer[BufferSize], *Head, *Tail;
inline char Getchar() {
    if(Head == Tail) {
        int l = fread(buffer, 1, BufferSize, stdin);
        Tail = (Head = buffer) + l;
    }
    return *Head++;
}
int read() {
    int x = 0, f = 1; char c = getchar();
    while(!isdigit(c)){ if(c == '-') f = -1; c = getchar(); }
    while(isdigit(c)){ x = x * 10 + c - '0'; c = getchar(); }
    return x * f;
}

#define maxn 15
#define maxs 1100
#define MOD 1000000007
int n, m, k, A[maxn][maxn];

int s[maxn][maxn], ans, col[maxn][maxn], use[maxn];
int dfs(int x, int y) {
//	printf("%d %d\n", x, y);
//	for(int i = 1; i <= n; i++) {
//		for(int j = 1; j <= m; j++) printf("%d ", col[i][j]);
//		putchar('\n');
//	}
//	putchar('\n');
	if(x > n) return 1;
	s[x][y] = s[x-1][y] | s[x][y-1];
	int cnt = 0;
	for(int i = 0; i < k; i++) if(s[x][y] >> i & 1) cnt++;
	if(k - cnt < (n - x) + (m - y) + 1) return 0;
	if(A[x][y] && (s[x][y] >> A[x][y] - 1 & 1)) return 0;
	int ans = 0, sum = -1;
	if(!A[x][y]) {
		for(int i = 1; i <= k; i++) if(!(s[x][y] >> i - 1 & 1)) {
			if(!use[i] && sum >= 0) {
				ans += sum;
				if(ans >= MOD) ans -= MOD;
				continue;
			}
			s[x][y] ^= (1 << i - 1); use[i]++; col[x][y] = i;
			int tmp = 0;
			if(y < m) tmp = dfs(x, y + 1); else tmp = dfs(x + 1, 1);
			s[x][y] ^= (1 << i - 1); use[i]--; col[x][y] = 0;
			ans += tmp;
			if(ans >= MOD) ans -= MOD;
			if(!use[i]) sum = tmp;
		}
	}
	else {
		s[x][y] ^= (1 << A[x][y] - 1); use[A[x][y]]++; col[x][y] = A[x][y];
		if(y < m) ans += dfs(x, y + 1); else ans += dfs(x + 1, 1);
		s[x][y] ^= (1 << A[x][y] - 1); use[A[x][y]]--; col[x][y] = 0;
		if(ans >= MOD) ans -= MOD;
	}
	return ans;
}

int main() {
	n = read(); m = read(); k = read();
	for(int i = 1; i <= n; i++)
		for(int j = 1; j <= m; j++) A[i][j] = read(), use[A[i][j]] = 1;
	
	printf("%d\n", dfs(1, 1));
	
	return 0;
}

 

转载于:https://www.cnblogs.com/xiao-ju-ruo-xjr/p/5813195.html

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值