UVA 253 - Cube painting

题目大意:两个正方体,前六个字符代表第一个正方体按图中的编号,进行涂色。后六个字符代表第二个正方体按图中的编号,进行涂色。问能不考虑编号,第一个和第二个正方体是否一样。

解题思路:题目给的编号太麻烦不好判断,将编号顺序改为对面为一对。123456的编号改为162534。排序后判断两个编号是否一致。

ac代码:

#include <iostream>
#include <algorithm>
using namespace std;
char ch[20], t1, t2;
int jud;
struct node{
	char a;
	char b;
}no[6];
bool compare(node a, node b)
{
	if (a.a != b.a)
		return a.a<b.a;
	return a.b < b.b;
}
void change(int n)
{
	for (int i=0; i<6; i+=2){
			t1 = ch[i+n], t2 = ch[6+n-i-1];
			if (t1 > t2)
				no[n/2+i/2].a = t1, no[n/2+i/2].b = t2;
			else
				no[n/2+i/2].a = t2, no[n/2+i/2].b = t1;
	}
}
int main()
{
	while (scanf("%s", ch)!=EOF){
		jud = 1;
		change(0);
		change(6);
		sort(no, no+3, compare);
		sort(no+3, no+6, compare);
		for (int i=0; i<3; i++)
			if (no[i].a != no[i+3].a || no[i].b != no[i+3].b)
				jud = 0;
		if (jud)
			printf("TRUE\n");
		else
			printf("FALSE\n");		
	}
return 0;
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值