POJ 1382 The Proper Key G++ 巧妙 没掌握

本文详细介绍了POJ 1382题目,通过G++编程语言巧妙地解决问题。文章涵盖了解题思路、算法设计以及完整代码,适合提高编程和算法理解能力。
摘要由CSDN通过智能技术生成

#include <iostream>
#include <cstdio>
#include <cstring>
using namespace std;
//英语    抄博友程序    巧妙   没掌握
int n,m; 
int sn,sm;
bool key[109][109];
bool s[10220][1009];//抄博友程序 
bool vis[10220][1009];
bool in(int y)
{
	if(y>=0&&y<sm)
	{
		return true;
	}
	return false;
}

bool check(int a,int b)
{
	//cout<<"check "<<a<<" "<<b<<endl; 
	for(int i=0;i<n;i++)
	{
		for(int j=0;j<m;j++)
		{
			if(key[i][j]&&s[i+a][j+b])
			{
				return false;
			}
		}
	}
	return true;
}
int main()
{
	int T;
	//cin>>T;
	scanf("%d",&T);
	while(T--)
	{
		memset(key,false,sizeof(key));
		memset(s,false,sizeof(s));
		memset(vis,false,sizeof(vis));
		//cin>>n>>m;
		scanf("%d %d",&n,&m); 
		for(int i=0;i<n;i++)
		{
			getchar();
			for(int j=0;j<m;j++)
			{
				char c;
				scanf("%c",&c);
				//cout<<c<<endl;
				//cin>>c;
				if(c=='#')
				{
					key[i][j]=true;
				}
			}
		}		
		//cin>>sn>>sm;
		scanf("%d %d",&sn,&sm);
		sn=sn+n;
		for(int i=n;i<sn;i++)
		{
			getchar();
			for(int j=0;j<sm;j++)
			{
				char c;
				//cin>>c;
				scanf("%c",&c);
				if(c=='#')
				{
					s[i][j]=true;
				}
			}
		}		
		for(int j=0;j<sm;j++)
		{
			vis[0][j]=true;
		}
		int i;
		int flag; 
		for(i=1;i<sn;i++)
		{
			flag=0;
			for(int j=0;j<=sm-m;j++)//抄博友程序  
			{
				if(vis[i][j]==0 &&(vis[i-1][j]==1||(in(j-1)&&vis[i][j-1])||(in(j+1)&&vis[i][j+1])))//抄博友程序  没掌握 
				{
					if(check(i,j))//抄博友程序 
					{
						//cout<<i<<" "<<j<<endl;
						flag=1;
						vis[i][j]=1;
						if(j>0&&vis[i][j-1]==0)//抄博友程序 
						{
							j=j-2;
						}								
					}
				}
			}
			if(flag==0)
			{
				break;
			} 
		}
		//cout<<i<<endl;
		if(i>=sn)
		{
			cout<<"The key can fall through."<<endl;
		}else
		{
			cout<<"The key falls to depth "<<i-1<<"."<<endl;//抄博友程序 
		}
	} 
	return 0;
} 

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值