hdu 5292 Pocket Cube

582 篇文章 0 订阅
51 篇文章 0 订阅

题目链接:hdu 5292 Pocket Cube


本来想用暴力,从还原的魔方出发,遍历出所有的可能。但是看了下官方题解,挺牛逼的。考虑每个颜色对(黄,白),对于顺时为+1,逆时位-1,原位置0。总和为3的倍数就是可以还原的,否则就是不能还原。连接


#include <cstdio>
#include <cstring>
#include <algorithm>

using namespace std;
const int bw[30] = {0, 0, 0, 0, 0, 1, -1, 1, -1, 1, -1, -1, 1, -1, 1, -1, 1, 0, 0, 0, 0, 1, -1, -1, 1};

int main () {
	int cas;
	scanf("%d", &cas);
	for (int kcas = 1; kcas <= cas; kcas++) {
		int ret = 0;
		char s[2];
		for (int i = 1; i <= 24; i++) {
			scanf("%s", s);
			if (s[0] == 'w' || s[0] == 'y')
				ret += bw[i];
		}
		printf("Case #%d: %s\n", kcas, ret % 3 ? "NO" : "YES");
	}
	return 0;
}


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值