1519. Formula 1

Time limit: 1.0 second
Memory limit: 64 MB

Background

Regardless of the fact, that Vologda could not get rights to hold the Winter Olympic games of 20**, it is well-known, that the city will conduct one of the Formula 1 events. Surely, for such an important thing a new race circuit should be built as well as hotels, restaurants, international airport - everything for Formula 1 fans, who will flood the city soon. But when all the hotels and a half of the restaurants were built, it appeared, that at the site for the future circuit a lot of gophers lived in their holes. Since we like animals very much, ecologists will never allow to build the race circuit over the holes. So now the mayor is sitting sadly in his office and looking at the map of the circuit with all the holes plotted on it.

Problem

Who will be smart enough to draw a plan of the circuit and keep the city from inevitable disgrace? Of course, only true professionals - battle-hardened programmers from the first team of local technical university!.. But our heroes were not looking for easy life and set much more difficult problem: "Certainly, our mayor will be glad, if we find how many ways of building the circuit are there!" - they said.
It should be said, that the circuit in Vologda is going to be rather simple. It will be a rectangleN*M cells in size with a single circuit segment built through each cell. Each segment should be parallel to one of rectangle's sides, so only right-angled bends may be on the circuit. At the picture below two samples are given for N = M = 4 (gray squares mean gopher holes, and the bold black line means the race circuit). There are no other ways to build the circuit here.

Input

The first line contains the integer numbers N and M (2 ≤ NM ≤ 12). Each of the next N lines contains M characters, which are the corresponding cells of the rectangle. Character "." (full stop) means a cell, where a segment of the race circuit should be built, and character "*" (asterisk) - a cell, where a gopher hole is located.

Output

You should output the desired number of ways. It is guaranteed, that it does not exceed 263-1.

Samples

input output
4 4
**..
....
....
....
2
4 4
....
....
....
....
6
Problem Author: Nikita Rybak, Ilya Grebnov, Dmitry Kovalioff
Problem Source: Timus Top Coders: Third Challenge

题意:给出n*m的棋盘,有一些格子有障碍,求有多少个不经过障碍的哈密顿回路。

 
考虑:
  1.搜索?,当然优化也过不了。
 
  2.状压DP?考虑维护每一行哪些格子是在之前就连通的,预处理可行转移,再优化预处理状态,还是过不了。
   
  3.这时候想到轮廓线DP。
   设表示转移完,轮廓线上从左到右n+1个插头是否存在以及它们的连通性为S的方案总数。再想如何表示S,即最小表示法
 
 

   时合法的状态数总数为1333113个,可以解决本题。

   4.可以发现轮廓线以上的路径一定互不相交,并且两两匹配,所以可以用括号序列来表示状态,0表示左括号"(",1表示右括号”)",括号的意义即使到轮廓线上的路径是出路径还是入路径。

    可以发现,一行有m个格子,但是却有m+1个状态,因为在转移的时候我们要考虑到,当前处理的格子的右边的情况(绿色箭头)

    每一次转移之后相当于是轮廓线上当前决策格子的左插头改成下插头,上插头改成右插头的状态。

     每一次转移之后改变的是对应格子轮廓线上连通的状态,我们只关心当前格子轮廓线以上的连线终止与轮廓线上(由于要形成哈密顿回路,所以不存在自环)的情况,而并不在意轮廓线之下的连线方式。

    

    那么分情况考虑转移(把橘色的称为左插头,绿色的称为上插头)

  

    

     (1)上,左插头都没有,而且当前格子(x,y),(x+1,y),(x,y+1)均不为障碍,则可以新建一个连通块。

     ...00...  --------> ...12... 

     (2)仅有有上插头,或仅有下插头,延续原来的连通分量即可。

     ...10...  --------> ...12...

     (3)上下插头都有。

        3.1,上下插头均为出路径,画图可知即使两个连通分量左边合并,需要找到相应状态最左边那个右括号将其修改为左括号。

        .........2... -------> .........2

        3.2,左插头为入路径,上插头为出路径,即直接将对应状态位置上的左右括号消去即可。

        ...12...  ------> ...00...

        3.3,做插头为出路径,右插头为入路径,这个情况下就是答案的状态了,而且只能出现在最右下角的那个格子(其余的不合法)。

     


 细节

      注意题目的空间,以及还可以加上的优化。

      我们把每一次的状态hash起来(而不是动态存储) 

      一种数据 :

          1

          .

     三进制存储?为了方便,我们采用4进制(位运算中两位来表示一位)

      


 

CODE:

  

 #include<iostream>
#include<cstdio>
#include<algorithm>
#include<vector>
#include<cstdlib>
#include<cmath>
#include<cstring>
using namespace std;
#define yyj(a) freopen(a".in","r",stdin),freopen(a".out","w",stdout);
#define CC(a,b) memset(a,b,sizeof(a));
#define u64 unsigned long long
#define llg long long
const int sz=;
llg n,m,state[][sz],tail,hash[sz],bit[],tot[],nn,mm,k=;
u64 dp[][sz],ans; char mp[][]; llg init()
{
llg cs=;
CC(mp,);
CC(dp,);
tot[]=dp[][]=;
state[][]=;
ans=k=; char ch;
for (llg i=;i<=n;i++)
{
scanf("%c",&ch);
for (llg j=;j<=m;j++)
{
scanf("%c",&ch);
mp[i][j]=ch=='.';
if (ch=='.') cs++;
if (mp[i][j]) nn=i,mm=j;
}
}
return cs;
} void in(llg s,u64 sum)
{
llg p=s%sz;
while (hash[p])
{
if (state[k][hash[p]]==s)
{
dp[k][hash[p]]+=sum;
return ;
}
p++;
if (p==sz) p=;
}
hash[p]=++tot[k];
state[k][hash[p]]=s;
dp[k][hash[p]]=sum;
} void work()
{
for (llg i=;i<=n;i++)
{
for (llg j=;j<=m;j++)
{
k^=;
CC(hash,);
tot[k]=;
for (llg u=;u<=tot[-k];u++)
{
llg s=state[-k][u],p=(s>>bit[j-])&,q=(s>>bit[j])&;
u64 sum=dp[-k][u];
if (!mp[i][j])
{
if (!q && !p) in(s,sum);
}
else
{
if (!p && !q)
{
if (!mp[i][j+] || !mp[i+][j]) continue;
s=s^(<<bit[j-])^(<<bit[j]<<);
in(s,sum);
}
else
if (!p && q)
{
if (mp[i][j+]) in(s,sum);
if (mp[i+][j]) s=s^q*(<<bit[j-])^q*(<<bit[j]),in(s,sum);
}
else
if (p && !q)
{
if (mp[i+][j]) in(s,sum);
if (mp[i][j+]) s=s^p*(<<bit[j-])^p*(<<bit[j]),in(s,sum);
}
else
if (p+q==)
{
llg nd=;
for (llg u=j+;j<=m;u++)
{
llg w=(s>>bit[u])&;
if (w==) nd++;
if (w==) nd--;
if (!nd) {s-=(<<bit[u]); break;}
}
s=s^(<<bit[j])^(<<bit[j-]),in(s,sum);
}
else
if (p+q==)
{
llg nd=;
for (llg u=j-;u>=;--u)
{
llg w=(s>>bit[u])&;
if (w==) nd++;
if (w==) nd--;
if (!nd) {s+=(<<bit[u]); break;}
}
s=s^(<<bit[j]<<)^(<<bit[j-]<<);
in(s,sum);
}
else
if (p== && q==)
{
if (i==nn && j==mm) ans+=sum;
}
else
if (p== && q==)
{
s=s^(<<bit[j-]<<)^(<<bit[j]);
in(s,sum);
} }
}
}
for (llg j=;j<=tot[k];j++) state[k][j]<<=;
}
cout<<ans<<endl;
} int main()
{
//yyj("a");
for (llg i=;i<=;i++) bit[i]=(i<<);
while (scanf("%lld%lld",&n,&m)!=EOF)
{
if (init()%) {cout<<""<<endl; continue;}
work();
}
return ;
}

参考:《基于连通性状态压缩的动态规划问题_Cdq》》--陈丹琦

    博客:http://www.cnblogs.com/Tunix/p/4312203.html

  

[BZOJ]|[Ural] Formula 1-----插头DP入门的更多相关文章

  1. URAL Formula 1 ——插头DP

    [题目分析] 一直听说这是插头DP入门题目. 难到爆炸. 写了2h,各种大常数,ural垫底. [代码] #include <cstdio> #include <cstring> ...

  2. [URAL1519] Formula 1 [插头dp入门]

    题面: 传送门 思路: 插头dp基础教程 先理解一下题意:实际上就是要你求这个棋盘中的哈密顿回路个数,障碍不能走 看到这个数据范围,还有回路处理,就想到使用插头dp来做了 观察一下发现,这道题因为都是 ...

  3. bzoj 1814 Ural 1519 Formula 1 ——插头DP

    题目:https://www.lydsy.com/JudgeOnline/problem.php?id=1814 普通的插头 DP .但是调了很久.注意如果合并两个 1 的话,不是 “把向右第一个 2 ...

  4. 【BZOJ1814】Ural 1519 Formula 1 插头DP

    [BZOJ1814]Ural 1519 Formula 1 题意:一个 m * n 的棋盘,有的格子存在障碍,求经过所有非障碍格子的哈密顿回路个数.(n,m<=12) 题解:插头DP板子题,刷板 ...

  5. bzoj1814 Ural 1519 Formula 1(插头dp模板题)

    1814: Ural 1519 Formula 1 Time Limit: 1 Sec  Memory Limit: 64 MBSubmit: 924  Solved: 351[Submit][Sta ...

  6. 【Ural】1519. Formula 1 插头DP

    [题目]1519. Formula 1 [题意]给定n*m个方格图,有一些障碍格,求非障碍格的哈密顿回路数量.n,m<=12. [算法]插头DP [题解]<基于连通性状态压缩的动态规划问题 ...

  7. Ural 1519 Formula 1 插头DP

    这是一道经典的插头DP单回路模板题. 用最小表示法来记录连通性,由于二进制的速度,考虑使用8进制. 1.当同时存在左.上插头的时候,需要判断两插头所在连通块是否相同,若相同,只能在最后一个非障碍点相连 ...

  8. BZOJ.1210.[HNOI2004]邮递员(插头DP Hash 高精)

    BZOJ 洛谷 http://www.cnblogs.com/LadyLex/p/7326874.html 插头DP.\(m+1\)个插头的状态需要用三进制表示:\(0\)表示无插头,\(1\)表示是 ...

  9. URAL1519 Formula 1 —— 插头DP

    题目链接:https://vjudge.net/problem/URAL-1519 1519. Formula 1 Time limit: 1.0 secondMemory limit: 64 MB ...

随机推荐

  1. elasticsearch 通过外网访问

    elasticsearch 只能通过本地访问 需要修改  network.host: 0.0.0.0. 重新开启:提示错误: ERROR: [2] bootstrap checks failed[1] ...

  2. POJ:Dungeon Master(三维bfs模板题)

    Dungeon Master Time Limit: 1000MS   Memory Limit: 65536K Total Submissions: 16748   Accepted: 6522 D ...

  3. 前m大的数(哈希入门)&&sort

    http://acm.hdu.edu.cn/showproblem.php?pid=1280 普通方法(625ms) #include <stdio.h> #include <str ...

  4. [LeetCode] 851. Loud and Rich_ Medium tag: DFS

    In a group of N people (labelled 0, 1, 2, ..., N-1), each person has different amounts of money, and ...

  5. java selenium webdriver处理JS操作窗口滚动条

    未经作者允许,禁止转载!!! java selenium webdriver处理JS操作窗口滚动条 java selenium webdriver处理JS操作窗口滚动条 import org.open ...

  6. linux命令:linux文件处理命令

    命令格式 : 命令  [-选项]   [参数] 例:ls -la /etc 说明:1)个别命令使用不遵循此格式,[]代表可选 2)当有多个选项时,可以写在一起 3)-a等于 --all,调用简化选项用 ...

  7. curl命令总结

    curl常用命令http://www.cnblogs.com/gbyukg/p/3326825.html curl命令后面的网址需要用双引号括起来,原因:防止有特殊字符 &号就是特殊字符 cu ...

  8. nginx之全局设置,location,虚拟主机,日志管理

    nginx之全局设置,location,虚拟主机,日志管理 worker_processes 1;//子进程,cpu数*核数 ****************全局设置************** ** ...

  9. 何为仿射变换(Affine Transformation)

    http://www.cnblogs.com/ghj1976/p/5199086.html 变换模型是指根据待匹配图像与背景图像之间几何畸变的情况,所选择的能最佳拟合两幅图像之间变化的几何变换模型.可 ...

  10. Devenv 命令行开关

    Devenv 可用来设置集成开发环境 (IDE) 的各个选项,以及从命令行生成.调试和部署项目.使用这些开关从脚本或 .bat 文件(例如每夜生成的脚本)运行 IDE,或以特定配置启动 IDE. 说明 ...