Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 65536/32768 K (Java/Others)

Total Submission(s): 487 Accepted Submission(s): 157

Problem Description

Many people think that Tetris was invented by two Russian programmers. But that is not the whole truth. The idea of the game is very old – even the Egyptians had something similar. But they did not use it as a game. Instead, it was used as a very complicated lock. The lock was made of wood and consisted of a large number of square fields, laid out in regular rows and columns. Each field was either completely filled with wood, or empty. The key for this lock was two-dimensional and it was made by joining square parts of the same size as the fields of the lock. So they had a 2D lock and 2D key that could be inserted into the lock from the top. The key was designed so that it was not possible to move it upwards. It could only fall down and it could slide sideways – exactly like in a Tetris game. The only difference is that the key could not be rotated. Rotation in Tetris is really a Russian invention.

The entry gate into the Pyramid has such a lock. The ACM archaeologists have found several keys and one of them belongs to the lock with a very high probability. Now they need to try them out and find which one to use. Because it is too time-consuming to try all of them, it is better to begin with those keys that may be inserted deeper into the lock. Your program should be able to determine how deep a given key can be inserted into a given lock.

Input

The input consists of T test cases. The number of them (T) is given on the first line of the input file. Each test case begins with a line containing two integers R and C (1 <= R,C <= 100) indicating the key size. Then exactly R rows follow, each containing C characters. Each character is either a hash mark (#) or a period (.). A hash mark represents one square field made of wood; a period is an empty field. The wooden fields are always connected, i.e. the whole key is made of one piece. Moreover, the key remains connected even if we cut off arbitrary number of rows from its top. There is always at least one non-empty field in the top-most and bottom-most rows and the left-most and right-most columns.

After the key description, there is a line containing two integers D and W (1 <= D <= 10000, 1 <= W <= 1000). The number W is the lock width, and D is its depth. The next D lines contain W characters each. The character may be either a hash mark (representing the wood) or a period (the free space).

Output

Your program should print one line of output for each test case. The line should contain the statement “The key falls to depth X.”. Replace X with the maximum depth to which the key can be inserted by moving it down and sliding it to the left or right only. The depth is measured as the distance between the bottom side of the key and the top side of the lock. If it is possible to move the key through the whole lock and take it away at the bottom side, output the sentence “The key can fall through.”.

Sample Input
4
2 4
#.##
###.
3 6
#....#
#....#
#..###
2 3
##.
.##
2 7
#.#.#.#
.#.#.#.
1 1
#
1 10
###....###
3 2
##
.#
.#
1 5
#.#.# Sample Output
The key falls to depth 2.
The key falls to depth 0.
The key can fall through.
The key falls to depth 2.

【题目链接】:http://acm.hdu.edu.cn/showproblem.php?pid=1112

【题解】



让你那上面那个钥匙去插入下面那个锁里面;

问你这个钥匙能插多深.

这里的深度是指钥匙最后的底部和锁的上部的高度差;

我们首先可以让锁和钥匙左对齐;

即它们两个都靠左摆好;

设钥匙的高为n宽为m;

设锁的高为nn宽为mm

则钥匙能够往右移动的最大限度是mm-m;

(这道题的设置是,如果钥匙的宽比锁长就直接输出0);



也就是说你一开始有mm-m+1个位置可以插入;

而且钥匙插入锁里面之后可以左右移动(也有mm-m+1个位置可供移动);

深度的最大值为n+nn-1,一旦大于这个值就完全插入了;

代码的模拟过程是,一个单位一个单位地把钥匙往下移动;

先看看锁能在第一层的那mm-m+1个口中的哪一些口插入;

用can[r][mm-m]表示;->bool数组;

然后从第二层开始,就可能有横移操作了;

即可能can[1][j]这个状态(就是说从第j个口不能插入);

但是can[2][j-1]这个状态(第j-1个口,能一直插到第2行)可行;

那么就能从can[2][j-1]这个状态表示的情况,再右移一位;那么就能达到

can[2][j]了;这时can[2][j]不是表示从第j个口直接往下移动2层;

而是先从第j-1个口往下移动两层,再往右移动一层;

(我说的口是下面这个图所示的意思,一共mm-m+1个口)



然后如果新获得了状态can[i][j]

那么如果can[i][j-1]为false;

则让j减去1(在循环体里面要减去2,因为有个j++还没执行);

然后再看看can[i][j-1]能不能因为can[i][j]变成true了,然后can[i][j-1]本身也变成true;

(即左移)

这里判断能不能到can[i][j]这个状态.

可以看一下是钥匙的一部分的地方(x,y)

其(x+i,y+j)是不是锁;

如果是钥匙的地方(x,y),对应的(x+i,y+j)都为空,就表示这个状态可以装得下这把钥匙;

同时因为can[i-1][j]或can[i][j-1]或can[i][j+1]为true;

就说明这个位置能通过移动和外界联系;则可行;

具体的看代码吧;



【完整代码】

#include <bits/stdc++.h>
using namespace std; const int MAXN = 100+100; int T;
int n,m,nn,mm;
bool key[MAXN][MAXN],loc[10010][1010],can[10010][1010];
char s[1000+100]; bool in(int px,int py)
{
for (int i = 1;i <= n;i++)
for (int j = 1;j <= m;j++)
if (key[i][j] && loc[i+px][j+py])
return false;
return true;
} int main()
{
//freopen("F:\\rush.txt","r",stdin);
cin >> T;
while (T--)
{
for (int i = 1;i <= 100;i++)
for (int j = 1;j <= 100;j++)
key[i][j] = false;
for (int i = 1;i <= 10000;i++)
for (int j = 0;j <= 1000;j++)
loc[i][j] = can[i][j] = false;
cin >> n >> m;
for (int i = 1;i <= n;i++)
{
scanf("%s",s+1);
for (int j = 1;j <= m;j++)
if (s[j]=='#')
key[i][j] = true;
}
cin >> nn >> mm;
nn+=n;
for (int i = n+1;i <= nn;i++)
{
scanf("%s",s+1);
for (int j = 1;j <= mm;j++)
if (s[j]=='#')
loc[i][j] = true;
}
for (int i = 0;i <= mm;i++)
can[0][i] = true;
int i;
for (i = 1;i <= nn;i++)
{
bool flag = false;
for (int j = 0;j <= mm-m;j++)
{
if (can[i][j]) continue;
bool judge1 = (j-1>=0 && can[i][j-1]);
bool judge2 = (j+1<=mm-m && can[i][j+1]);
bool judge3 = can[i-1][j];
if (judge1 || judge2 || judge3)
{
if (in(i,j))
{
flag = true;
can[i][j] = true;
if (j-1>=0 && !can[i][j-1])
j-=2;
}
}
}
if (!flag)
break;
}
if (i>nn)
puts("The key can fall through.");
else
printf("The key falls to depth %d.\n",i-1);
}
return 0;
}

【hdu 1112】The Proper Key的更多相关文章

  1. 【HDU 5647】DZY Loves Connecting(树DP)

    pid=5647">[HDU 5647]DZY Loves Connecting(树DP) DZY Loves Connecting Time Limit: 4000/2000 MS ...

  2. 【数位dp】【HDU 3555】【HDU 2089】数位DP入门题

    [HDU  3555]原题直通车: 代码: // 31MS 900K 909 B G++ #include<iostream> #include<cstdio> #includ ...

  3. -【线性基】【BZOJ 2460】【BZOJ 2115】【HDU 3949】

    [把三道我做过的线性基题目放在一起总结一下,代码都挺简单,主要就是贪心思想和异或的高斯消元] [然后把网上的讲解归纳一下] 1.线性基: 若干数的线性基是一组数a1,a2,a3...an,其中ax的最 ...

  4. 【HDU 2196】 Computer(树的直径)

    [HDU 2196] Computer(树的直径) 题链http://acm.hdu.edu.cn/showproblem.php?pid=2196 这题可以用树形DP解决,自然也可以用最直观的方法解 ...

  5. 【HDU 2196】 Computer (树形DP)

    [HDU 2196] Computer 题链http://acm.hdu.edu.cn/showproblem.php?pid=2196 刘汝佳<算法竞赛入门经典>P282页留下了这个问题 ...

  6. 【HDU 5145】 NPY and girls(组合+莫队)

    pid=5145">[HDU 5145] NPY and girls(组合+莫队) NPY and girls Time Limit: 8000/4000 MS (Java/Other ...

  7. 【hdu 1043】Eight

    [题目链接]:http://acm.hdu.edu.cn/showproblem.php?pid=1043 [题意] 会给你很多组数据; 让你输出这组数据到目标状态的具体步骤; [题解] 从12345 ...

  8. 【HDU 3068】 最长回文

    [题目链接] http://acm.hdu.edu.cn/showproblem.php?pid=3068 [算法] Manacher算法求最长回文子串 [代码] #include<bits/s ...

  9. 【HDU 4699】 Editor

    [题目链接] http://acm.hdu.edu.cn/showproblem.php?pid=4699 [算法] 维护两个栈,一个栈放光标之前的数,另外一个放光标之后的数 在维护栈的同时求最大前缀 ...

随机推荐

  1. VM虚拟机下安装无线网卡教程

    前言: 由于最近学习olsrd需要,然后需要无线网卡支持.所以将教程分享如下. 实体机:Windows 7 虚拟机:Ubuntu 14.04 无线网卡:Tenda W311M V3.0 虚拟机软件:V ...

  2. Gatling初次体验

    主要步骤: 1. 利用springboot编写了一个简单的服务jdktest 2.将jdktest利用docker在虚拟机中启动 3.创建一个scala工程,利用gatling提供的DSL编写性能脚本 ...

  3. ios开发ARC,IBOutlets之strong与weak

    今天在写程序的时候,用IBOutlets连了一个自定义的控件,出现了问题,后面访问的时候,控件里有些subviews没有初始化好,取到的时候为nil, 程序里用了ARC, IBOutlets一连接上, ...

  4. javascript正则表达式和字符串RegExp

    这篇文章主要介绍了javascript正则表达式和字符串RegExp and String(一)的相关资料,需要的朋友可以参考下     前言     正则表达式是javascript非常重要和常用的 ...

  5. php 获取客户端的ip、地理信息、浏览器信息、本地真实ip

    转自:http://www.blhere.com/948.html 这是非常实用的php常用类.获取客户端的ip.地理信息.浏览器信息.本地真实ip 1234567891011121314151617 ...

  6. Linux 下的mysql+centos7+主从复制

    mysql+centos7+主从复制   MYSQL(mariadb) MariaDB数据库管理系统是MySQL的一个分支,主要由开源社区在维护,采用GPL授权许可.开发这个分支的原因之一是:甲骨文公 ...

  7. Python学习之路12☞模块与包

    一 模块 1.1 什么是模块? 一个模块就是一个包含了python定义和声明的文件,文件名就是模块名字加上.py的后缀. 1.2 为何要使用模块? 如果你退出python解释器然后重新进入,那么你之前 ...

  8. css的两栏布局

    经典的实现左边固定宽度,右边宽度自适应的几种方法 利用float和margin-left属性(margin-left的值可以稍稍大于或者等于.left的宽度) .left{ width: 30px; ...

  9. LeetCode93 Restore IP Addresses

    题目: Given a string containing only digits, restore it by returning all possible valid IP address com ...

  10. sql —— like

    用于在 WHERE 子句中搜索列中的指定模式. 原表: 一.% %表示任何字符出现任意次数. 1.以某个字符串开头的数据 2.包含某个字符串的数据 3.以某个字符串结尾的数据 二._ 只适用于匹配单个 ...