F - F ZOJ - 2850

点击打开链接

 
Tom's Meadow 

Tom has a meadow in his garden. He divides it into N * M squares. Initially all the squares were covered with grass. He mowed down the grass on some of the squares and thinks the meadow is beautiful if and only if

  1. Not all squares are covered with grass.
  2. No two mowed squares are adjacent.

Two squares are adjacent if they share an edge. Here comes the problem: Is Tom's meadow beautiful now?

汤姆在他的花园里有一片草地。 他将它分成N * M个正方形。 最初所有的广场都被草覆盖着。 他在一些广场上修剪草地,并认为草地是美丽的,当且仅当


并非所有的广场都被草覆盖。

没有两个割草方格相邻。

如果两个方格共享一个边,则它们相邻。 问题来了:汤姆的草地现在变得漂亮了吗?

Input

The input contains multiple test cases!

Each test case starts with a line containing two integers NM (1 <= NM <= 10) separated by a space. There follows the description of Tom's Meadow. There're N lines each consisting of M integers separated by a space. 0(zero) means the corresponding position of the meadow is mowed and 1(one) means the square is covered by grass.

A line with N = 0 and M = 0 signals the end of the input, which should not be processed

输入包含多个测试用例!


每个测试用例都以包含由空格分隔的两个整数N,M(1 <= N,M <= 10)的行开始。 接下来是汤姆草地的描述。 每个N行由M个整数组成,每个行由一个空格分隔。 0(零)表示草地的相应位置被割草,1(1)表示广场被草地覆盖。


N = 0和M = 0的行表示输入的结束,不应该进行处理

Output

One line for each test case.

Output "Yes" (without quotations) if the meadow is beautiful, otherwise "No"(without quotations).

每个测试用例一行。


如果草地很漂亮,输出“是”(不含引号),否则输出“否”(不含引号)。

Sample Input

2 2
1 0
0 1
2 2
1 1
0 0
2 3
1 1 1
1 1 1
0 0

Sample Output

Yes
No
No


题解:给出一n*m只含有0 or 1的图。是否满足两个条件:1.不含有相邻的0; 2.存在0

原创代码:

#include<cstdio>
#include<cstring>
int a[150][150];
int main()
{
	int m,n;
	while(scanf("%d%d",&n,&m)!=EOF)
	{
		if(n==0||m==0)
		break;
		int ans=0;
		memset(a,2,sizeof(a));
		for(int i=1;i<=n;i++)
		{
			for(int j=1;j<=m;j++)
			{
				scanf("%d",&a[i][j]);
				if(a[i][j]==0)
				ans=1;
			}
		}
		int aa=0;
		for(int i=1;i<=n;i++)
		{
			for(int j=1;j<=m;j++)
			{
				if(a[i][j]==0)
				{
					if(a[i+1][j]==0||a[i][j+1]==0)
					{
						aa=1; 
						break;	
					}
				}
			}
			if(aa==1)
			break;
		}
		if(ans==1&&aa==0)
		{
			printf("Yes\n");
		}
		else
		printf("No\n");
	}
return 0;
} 
借鉴代码:
#include<cstdio>
#include<cstring>
#include<cmath>
#include<algorithm>
using namespace std;

int main()
{
	int n,m;
	while(~scanf("%d%d",&n,&m),n,m)
	{
		int ans[150][150];
		memset(ans,0,sizeof(ans));
		int q = 0,p = 0;
		for(int i = 0;i < n;i++)
		{
			for(int j = 0;j < m;j++)
			{
				int t;
				scanf("%d",&t);
				ans[i][j] = t;
				if(t == 0) p = 1;
				if(t == 0&&ans[i][j-1] == 0&&j>0) 
				{
					q = 1;
				}
			}
		}
		for(int j = 0;j < m;j++)
		{
			for(int i = 1;i < n;i++)
			{
				if(ans[i][j] == 0&&ans[i-1][j] == 0)
				{
					q = 1;
				}
			}
		}
		if(q == 0&&p) printf("Yes\n");
		else printf("No\n");
	}
return 0;
}














### ZOJ 1245 Triangles Problem Description 在ZOJ (Zhejiang University Online Judge) 平台上的编号为1245的题目涉及三角形判定问题。给定三个边长a, b 和c,程序需判断这三条线段能否组成一个有效的三角形。如果可以,则计算并输出该三角形的最大内角;如果不可以,则提示无法构成三角形。 对于输入数据中的每组测试案例,先验证三边长度是否满足任意两边之和大于第三边这一基本条件[^1]。只有当此条件成立时才能进一步处理角度计算等问题。 ### Solution Approach 为了实现上述功能,算法流程如下: - 对于每一组输入(a,b,c),首先对这三个数值进行升序排列以便后续比较操作更直观; - 判断最小两条边相加是否超过最长的一条边; - 如果不满足则直接返回 "Impossible." 表明不能形成有效三角形; - 若能构成三角形,则利用余弦定律求得最大夹角&theta;,并将其转换成度数形式输出。 下面是Python语言的具体实现方式: ```python import math def solve_triangle_sides(sides): sides.sort() # 排序使得sides=[最短边, 中间边, 最长边] if sides[0] + sides[1] <= sides[2]: return 'Impossible.' cos_theta = (pow(sides[0], 2) + pow(sides[1], 2) - pow(sides[2], 2)) / (2 * sides[0] * sides[1]) theta_radians = math.acos(cos_theta) theta_degrees = round(math.degrees(theta_radians)) return f'{theta_degrees:.3f}' # 测试用例 print(solve_triangle_sides([3, 4, 5])) # 输出90.000 print(solve_triangle_sides([6, 8, 10])) # 输出90.000 print(solve_triangle_sides([1, 2, 1000])) # 输出Impossible. ```
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值