记录编号 130027 评测结果 AAAAA
题目名称 爱上捉迷藏极限关卡 最终得分 100
用户昵称 Gravatar乌龙猹 是否通过 通过
代码语言 C++ 运行时间 0.020 s
提交时间 2014-10-21 17:54:48 内存使用 5.14 MiB
显示代码纯文本
#include<cstdio>
#include<iostream>
#include<algorithm>
using namespace std;

int n,m,k;
int sum;
int jli,jlj;
struct dx{
	int x,y;
};
dx h[11];
bool bo[1006][1006];
int f[1006][1006];

bool comp(dx a,dx b)
{
	if(a.y==b.y) return a.x<b.x;
	return a.y<b.y;
}
int main()
{
	freopen("kadundudu.in","r",stdin);
	freopen("kadundudu.out","w",stdout);
	ios::sync_with_stdio(false);
	cin>>m>>n>>k;
	for(int i=1;i<=n;i++)
	{
		string s;
		cin>>s;
		for(int j=0;j<m;j++)
		{
			if(s[j]=='X') f[i][j+1]=4;//可能 
			if(s[j]=='N') f[i][j+1]=3;//7*7
			if(s[j]=='C') f[i][j+1]=2;//5*5
			if(s[j]=='Z') f[i][j+1]=1;//3*3
		}
	}
	for(int i=1;i<=n;i++)
	{
		for(int j=1;j<=m;j++)
		{
			if(f[i][j]==1)
			{
				int l=max(1,j-f[i][j]),r=min(m,j+f[i][j]);
				int u=max(1,i-f[i][j]),d=min(n,i+f[i][j]);
				for(int dx=u;dx<=d;dx++)
				{
					for(int lxx=l;lxx<=r;lxx++)
						if(f[dx][lxx]==4&&!bo[dx][lxx])
						{
							bo[dx][lxx]=1;
							h[++sum].x=lxx;
							h[sum].y=dx;
						}
				}
			}
		}
	}
	sort(h+1,h+sum+1,comp);
	for(int i=1;i<=k;i++) cout<<h[i].x<<' '<<h[i].y<<endl;
	return 0;
}