https://www.luogu.org/problemnew/show/P5074

插头 $ dp $ 入门题

如果你还不会插头 $ dp $ 请右转 洛谷插头dp题解

虽然是入门题但还是逃不过分类讨论的魔爪

这里采用了括号序列的方法

$ left $ 表示左插头的状态,$ up $ 表示右插头的状态

情况 1:这个格子不能放线

只有在 $ left == 0 $ && $ up == 0 $ 的时候才能转移

情况 2:$ left == 0 $ && $ up == 0 $

因为每个格子一定要放线,所以要给这个格子加一个下插头和一个右插头

情况 3:$ left == 0 $ && $ up != 0 $

有一个上插头下来,没有左插头,为了让这个插头形成回路,我们给这个插头加一个下插头或者右插头

情况 4:$ left != 0 $ && $ up == 0 $

跟情况 3 类似,这里不再赘述

情况 5:$ left == 1 $ && $ up == 1 $

一个左插头和一个上插头都是左括号,要到右边去找到一个右括号来匹配,并且将右括号变成左括号

个人认为这是最难理解的一种情况,强烈建议大家自己去画个图

情况 6:$ left == 2 $ && $ up == 2 $

根情况 5 类似,只不过变成了到左边找左括号匹配

情况 7:$ left == 2 $ && $ up == 1 $

相当于左插头和上插头抵消了,将这两个插头直接去掉后,左插头本来有一个左括号和它匹配,上插头有一个右括号和它匹配,仍然满足括号序列的性质

情况 8:$ left == 1 $ && $ up == 2 $

形成了一个回路,直接连接即可

当然,如果这个回路是最后一个回路的话要统计答案,判断是否是最后一个回路只需判断这个格子是不是最后一个可以放线的点

最后这个题目有一个小坑,就是当整张地图都不能放线的时候还是算有一种情况的

下面是简(sang)单(xin)明(bing)了(kuang)的代码

#include <bits/stdc++.h>
#define Fast_cin ios::sync_with_stdio(false), cin.tie();
#define For(i, a, b) for(register int i = a; i <= b; i++)
#define Forr(i, a, b) for(register int i = a; i >= b; i--)
#define DEBUG(x) cerr << "DEBUG" << x << " >>> " << endl;
using namespace std; typedef unsigned long long ull;
typedef long long ll; template <typename _T>
inline void read(_T &f) {
f = 0; _T fu = 1; char c = getchar();
while(c < '0' || c > '9') { if(c == '-') fu = -1; c = getchar(); }
while(c >= '0' && c <= '9') { f = (f << 3) + (f << 1) + (c & 15); c = getchar(); }
f *= fu;
} template <typename T>
void print(T x) {
if(x < 0) putchar('-'), x = -x;
if(x < 10) putchar(x + 48);
else print(x / 10), putchar(x % 10 + 48);
} template <typename T>
void print(T x, char t) {
print(x); putchar(t);
} const int mod = 5801, N = mod + 100; ll f[2][N], ans;
int a[15][15], tot[2], v[2][N], nxt[N], head[N], bin[15];
int T, n, m, now, end1, end2; void ins(int zt, ll val) {
int u = zt % mod;
for(register int i = head[u]; i; i = nxt[i])
if(v[now][i] == zt) {
f[now][i] += val;
return;
}
nxt[++tot[now]] = head[u]; head[u] = tot[now];
f[now][tot[now]] = val; v[now][tot[now]] = zt;
} void sol() {
tot[now] = 1; f[now][1] = 1; v[now][1] = 0;
for(register int i = 1; i <= n; i++) {
for(register int j = 1; j <= tot[now]; j++) v[now][j] <<= 2;
for(register int j = 1; j <= m; j++) {
now ^= 1; memset(head, 0, sizeof(head)); tot[now] = 0;
for(register int k = 1; k <= tot[now ^ 1]; k++) {
int zt = v[now ^ 1][k]; ll val = f[now ^ 1][k];
int t1 = (zt >> ((j << 1) - 2)) & 3, t2 = (zt >> (j << 1)) & 3;
if(a[i][j] == 0) {
if(t1 == 0 && t2 == 0) ins(zt, val);
} else if(t1 == 0 && t2 == 0) {
if(a[i][j + 1] && a[i + 1][j]) ins(zt ^ bin[j - 1] ^ (bin[j] << 1), val);
} else if(t1 == 0 && t2 != 0) {
if(a[i][j + 1]) ins(zt, val);
if(a[i + 1][j]) ins(zt ^ (bin[j] * t2) ^ (bin[j - 1] * t2), val);
} else if(t1 != 0 && t2 == 0) {
if(a[i + 1][j]) ins(zt, val);
if(a[i][j + 1]) ins(zt ^ (bin[j] * t1) ^ (bin[j - 1] * t1), val);
} else if(t1 == 1 && t2 == 1) {
int nowv = 1;
for(register int t = j + 1; t < m; t++) {
int t3 = (zt >> (t << 1)) & 3;
if(t3 == 1) nowv++;
if(t3 == 2) nowv--;
if(!nowv) { ins(zt ^ bin[j - 1] ^ bin[j] ^ (bin[t] * 3), val); break; }
}
} else if(t1 == 2 && t2 == 2) {
int nowv = 1;
for(register int t = j - 2; t > 0; t--) {
int t3 = (zt >> (t << 1)) & 3;
if(t3 == 1) nowv--;
if(t3 == 2) nowv++;
if(!nowv) { ins(zt ^ (bin[j - 1] << 1) ^ (bin[j] << 1) ^ (bin[t] * 3), val); break; }
}
} else if(t1 == 2 && t2 == 1) {
ins(zt ^ (bin[j - 1] << 1) ^ bin[j], val);
} else if(i == end1 && j == end2) {
ans += val;
} else ins(zt ^ bin[j - 1] ^ (bin[j] << 1), val);
}
}
}
} int main() {
read(T); bin[0] = 1;
for(register int i = 1; i <= 11; i++) bin[i] = bin[i - 1] << 2;
for(register int Case = 1; Case <= T; Case++) {
memset(a, 0, sizeof(a));
read(n); read(m); ans = 0; end1 = end2 = 0;
for(register int i = 1; i <= n; i++) {
for(register int j = 1; j <= m; j++) {
read(a[i][j]);
if(a[i][j]) end1 = i, end2 = j;
}
}
if(!end1) { print(1, '\n'); continue; }
sol(); print(ans, '\n');
}
return 0;
}

luoguP5074 Eat the Trees的更多相关文章

  1. HDU 1693 Eat the Trees(插头DP、棋盘哈密顿回路数)+ URAL 1519 Formula 1(插头DP、棋盘哈密顿单回路数)

    插头DP基础题的样子...输入N,M<=11,以及N*M的01矩阵,0(1)表示有(无)障碍物.输出哈密顿回路(可以多回路)方案数... 看了个ppt,画了下图...感觉还是挺有效的... 参考 ...

  2. 【HDU】1693 Eat the Trees

    http://acm.hdu.edu.cn/showproblem.php?pid=1693 题意:n×m的棋盘求简单回路(可以多条)覆盖整个棋盘的方案,障碍格不许摆放.(n,m<=11) #i ...

  3. HDU 1693 Eat the Trees(插头DP)

    题目链接 USACO 第6章,第一题是一个插头DP,无奈啊.从头看起,看了好久的陈丹琦的论文,表示木看懂... 大体知道思路之后,还是无法实现代码.. 此题是插头DP最最简单的一个,在一个n*m的棋盘 ...

  4. HDU 1693 Eat the Trees

    第一道(可能也是最后一道)插头dp.... 总算是领略了它的魅力... #include<iostream> #include<cstdio> #include<cstr ...

  5. 【HDOJ】【1693】Eat The Trees

    插头DP 插头dp模板题…… 这题比CDQ论文上的例题还要简单……因为不用区分左右插头(这题可以多回路,并不是一条哈密尔顿路) 硬枚举当前位置的状态就好了>_< 题解:http://blo ...

  6. Eat the Trees hdu 1693

    Problem DescriptionMost of us know that in the game called DotA(Defense of the Ancient), Pudge is a ...

  7. HDU - 1693 Eat the Trees(多回路插头DP)

    题目大意:要求你将全部非障碍格子都走一遍,形成回路(能够多回路),问有多少种方法 解题思路: 參考基于连通性状态压缩的动态规划问题 - 陈丹琦 下面为代码 #include<cstdio> ...

  8. HDU1693 Eat the Trees 插头dp

    原文链接http://www.cnblogs.com/zhouzhendong/p/8433484.html 题目传送门 - HDU1693 题意概括 多回路经过所有格子的方案数. 做法 最基础的插头 ...

  9. 【HDU1693】Eat the Trees(插头dp)

    [HDU1693]Eat the Trees(插头dp) 题面 HDU Vjudge 大概就是网格图上有些点不能走,现在要找到若干条不相交的哈密顿回路使得所有格子都恰好被走过一遍. 题解 这题的弱化版 ...

随机推荐

  1. Inception

    http://baijiahao.baidu.com/s?id=1601882944953788623&wfr=spider&for=pc

  2. mysql查询大于X分钟数

    select * from table where   date_add(STR_TO_DATE(createtime,'%Y-%m-%d %T:%i:%s'), interval '00:60:00 ...

  3. Linux基石【第四篇】基本Linux命令

    Linux 系统上一切皆文件 命令: pwd  -- 查看当前目录  / 代表根目录 clear -- 清屏命令 cd(change directory) -- 切换目录 cd / -- 切换到根目录 ...

  4. win7 python2.7安装PIL库

    一.前言 遇到客户给了一个需求,需要拼接多个图片,上网找到一个解决方式,不过是需要安装PIL的,相信安装过这个库的应该都遇到很多问题,接下来说说怎么解决. 我的环境是: 操作系统:win10 64bi ...

  5. update-alternatives命令详解

    转载:http://blog.csdn.net/maixia24/article/details/11707289 update-alternatives是ubuntu系统中专门维护系统命令链接符的工 ...

  6. SQLServer锁的机制

    SQLServer锁的机制:共享锁(S)排它锁(X)更新锁(U)意向共享 (IS)意向排它 (IX) 意向排它共享 (SIX)架构修改(Sch-M) 架构稳定性(Sch-S)大容量更新(BU)

  7. oracle存储过程和游标参考

    oracle open cursor forhttp://www.itpub.net/thread-1874683-1-1.html

  8. W-D-S-DDR

    要把下载到nandflash里面的程序(大于8KB的时候)拷贝到链接地址,故要初始化DDR,才能够使用DDR. ??? 开发板上电后要初始化DRAC,以及DDR,然后把程序拷贝到50000000出运行 ...

  9. Grails入门系列(一)

    Grails入门系列(一) JAVAweb开发技术相对于php,python,note.js等新式技术更为复杂,向来以繁杂的配置著称,但是Java任然被广泛的应用于大型企业级的项目,主要是因为技术成熟 ...

  10. 解决部分版本kali升级后w3af无法运行的问题

    1,w3af简介 w3af是一个Web应用程序攻击和检查框架.该项目已超过130个插件,其中包括检查网站爬虫,SQL注入(SQL Injection),跨站(XSS),本地文件包含(LFI),远程文件 ...