【 UVA - 1587 】Box(盒子)

题目链接

代码:

#include <iostream>
#include <algorithm>
#include <set>
#include <map>
using namespace std;
typedef pair<int,int> pr; //表示长方形
int main()
{
	int w,h,c=0;
	map<pr,int> m;  //映射:长方形-->出现次数
	map<int,int> cnt; //映射: 边长-->出现次数
	set<pr> s; //记录出现了哪些类型的长方形,方便m查找次数
	while(cin>>w>>h)
	{
		++c;
		if(w>h) swap(w,h); //按从小到大
		m[pr{w,h}]++; //增加该种长方形出现次数
		cnt[w]++; //增加该种边出现次数
		cnt[h]++;
		s.insert(pr{w,h}); //增加该种长方形类型
		
		if(c%6==0) //每输入完六个长方形 判断一次
		{
			int flag=0;
			for(pr x:s)
			{
				if(m[x]%2 || cnt[x.first]%4 || cnt[x.second]%4)
				/*相同长方形应该成对出现 && 长方形的任何边必须能整除4(因为最起码
				相面对的两个长方形(相同),一定最少有四条相等边),当等长边的出现次数为12时,为正方形。*/
				{
					flag=1;
					break;
				}
			}	
			if(flag) cout<<"IMPOSSIBLE"<<endl;
			else cout<<"POSSIBLE"<<endl;
			m.clear(),cnt.clear(),s.clear();
		}
	}
   	return 0;
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值