把 'O' 看成 'X',然后枚举它的四个方向看看是否能放,然后枚举 $2^4$ 种可能表示每种方向是否放了,放了的话就标成 'X',就相当于容斥,对于新的图去dp。

dp就是铺地砖,行用二进制来表示是否放了砖块。

#include <bits/stdc++.h>

const int MOD = 1e9 + ;
const int N = 1e4 + ;
const int dir[][] = {{, -}, {, }, {, }, {-, }};
int dp[N][ << ], n, sx, sy;
char s[][N];
int mp1[][N], mp[][N]; void M(int &a) {
if (a >= MOD) a -= MOD;
if (a < ) a += MOD;
} int get(int x) {
int cnt = ;
while (x) {
cnt++;
x &= (x - );
}
return cnt;
} int DP() {
for (int i = ; i < ; i++)
for (int j = ; j <= n; j++)
dp[j][i] = ;
dp[][] = ;
for (int i = ; i <= n; i++) {
int no = mp[][i] + mp[][i] * + mp[][i] * ;
for (int j = ; j < ; j++) {
if (j & no) continue;
dp[i][j | no] = dp[i - ][ - j];
if (j == || j == ) {
M(dp[i][j | no] += dp[i - ][]);
}
if (j == ) {
M(dp[i][j | no] += dp[i - ][]);
M(dp[i][j | no] += dp[i - ][]);
}
}
}
return dp[n][];
} int main() {
scanf("%d", &n);
for (int i = ; i < ; i++)
scanf("%s", s[i] + );
for (int i = ; i < ; i++)
for (int j = ; j <= n; j++)
if (s[i][j] == 'O')
sx = i, sy = j, mp1[i][j] = ;
else if (s[i][j] == 'X')
mp1[i][j] = ;
std::vector<int> vec;
for (int i = ; i < ; i++) {
bool flag = ;
int x = sx + dir[i][] * , y = sy + dir[i][] * ;
if (x >= && x < && y >= && y <= n) {
for (int j = ; j <= ; j++) {
if (mp1[sx + dir[i][] * j][sy + dir[i][] * j])
flag = ;
}
} else {
flag = ;
}
if (flag)
vec.push_back(i);
}
int S = << vec.size();
int ans = ;
for (int s0 = ; s0 < S; s0++) {
memcpy(mp, mp1, sizeof(mp));
for (int j = ; j < vec.size(); j++) {
int i = vec[j];
if (s0 >> j & ) {
for (int k = ; k <= ; k++) {
int x = sx + dir[i][] * k, y = sy + dir[i][] * k;
mp[x][y] = ;
}
}
}
int f = get(s0) & ? : -;
M(ans += f * DP());
}
printf("%d\n", ans);
return ;
}

Codeforces Round #199 (Div. 2) D. Xenia and Dominoes的更多相关文章

  1. Codeforces Round #199 (Div. 2) B. Xenia and Spies

    B. Xenia and Spies time limit per test 2 seconds memory limit per test 256 megabytes input standard ...

  2. Codeforces Round #199 (Div. 2) E. Xenia and Tree

    题目链接 2了,差点就A了...这题真心不难,开始想的就是暴力spfa就可以,直接来了一次询问,就来一次的那种,TLE了,想了想,存到栈里会更快,交又TLE了..无奈C又被cha了,我忙着看C去了.. ...

  3. Codeforces Round #199 (Div. 2) A Xenia and Divisors

    注意题目的数字最大是7 而能整除的只有 1,2,3,4,6,故构成的组合只能是1,2,4 或1,2,6或1,3,6,故分别统计1,2,3,4,6的个数,然后再分配 #include <iostr ...

  4. 线段树 Codeforces Round #197 (Div. 2) D. Xenia and Bit Operations

    题目传送门 /* 线段树的单点更新:有一个交叉更新,若rank=1,or:rank=0,xor 详细解释:http://www.xuebuyuan.com/1154895.html */ #inclu ...

  5. Codeforces Round #199 (Div. 2)

    A.Xenia and Divisors 题意:给定N个数,每个数的取值范围为1-7,N是3的倍数,判定是否能够恰好将N个数分成若干三元组,使得一个组中的元素a,b,c满足 a < b < ...

  6. Codeforces Round #199 (Div. 2) C. Cupboard and Balloons

    C. Cupboard and Balloons time limit per test 2 seconds memory limit per test 256 megabytes input sta ...

  7. Codeforces Round #197 (Div. 2) D. Xenia and Bit Operations

    D. Xenia and Bit Operations time limit per test 2 seconds memory limit per test 256 megabytes input ...

  8. Codeforces Round #207 (Div. 1) B. Xenia and Hamming(gcd的运用)

    题目链接: B. Xenia and Hamming 题意: 要求找到复制后的两个字符串中不同样的字符 思路: 子问题: 在两串长度是最大公倍数的情况下, 求出一个串在还有一个串中反复字符的个数 CO ...

  9. Codeforces Round #515 (Div. 3)

    Codeforces Round #515 (Div. 3) #include<bits/stdc++.h> #include<iostream> #include<cs ...

随机推荐

  1. Euler Sums系列(四)

    \[\Large\displaystyle \sum_{n=1}^\infty (-1)^n \frac{H_n}{2n+1}=\mathbf{G}-\frac{\pi}{2}\ln(2)\] \(\ ...

  2. quartz定时任务cron表达式讲解及翻译成现实语言的插件的使用详解

    cron表达式讲解 参见该网址: https://www.cnblogs.com/GarfieldTom/p/3746290.html cron表达式只有专业技术人员才看得懂,普通人不知道表达式是什么 ...

  3. query_phase_execution_exception

    ES报错信息: { "error": { "root_cause": [ { "type": "query_phase_execu ...

  4. 线上学习-语言模型 language model

    chain rule markov assumption 评估语言模型 平滑方法

  5. 谈一谈并查集QAQ(上)

    最近几日理了理学过的很多oi知识...发现不知不觉就有很多的知识忘记了... 在聊聊并查集的时候顺便当作巩固吧.... 什么是并查集呢? ( Union Find Set ) 是一种用于处理分离集合的 ...

  6. golang数据库操作初体验

    在golang中,提供了标准的数据库接口database/sql包,做过数据库开发的应该知道,不同的数据库有不同的数据库驱动.比如mysql等,我们可以去找 https://golang.org/s/ ...

  7. 标签UILabel的讲解

    首先,我先自定义几个名词,方便接下来的讲解工作.如下图所示: 接下来,通过五个方面来讲解我们能对UILabel做出哪些改变或者称之为设置: 1.文字 1.1普通文字:内容text.字体大小font.字 ...

  8. Plastic Sprayer Manufacturer - How Does The Sprayer Work?

    The Plastic Sprayers Manufacturer   stated that the sprayer is a very useful type of machine and a g ...

  9. 用Jackson进行Json序列化时的常用注解

    Jackson时spring boot默认使用的json格式化的包,它的几个常用注解: @JsonIgnore 用在属性上面,在序列化和反序列化时都自动忽略掉该属性 @JsonProperty(&qu ...

  10. 【原】简单shell练习(四)

    1.查看已开启端口信息 #ss -ln 2.列出谁在使用某个端口(如:80) #lsof -i:80 3.显示文件夹下文件信息 #find /home/root -type f#find -type ...