首页 > 其他 > 详细

uva 608 - Counterfeit Dollar(枚举)

时间:2014-01-29 16:24:05      阅读:692      评论:0      收藏:0      [点我收藏+]

题目连接:uva 608 - Counterfeit Dollar


题目大意:有A~L这样12个硬币,然后其中有一个硬币是偏重或者偏轻,给出3次测量的情况,要求找出该硬币,并且判断是重了还是轻了。


解题思路:暴力枚举,12个硬币,2*24种情况。


#include <stdio.h>
#include <string.h>

const int N = 105;
int v[N], l[3][N], r[3][N], s[3], cnt[3];

void init() {
	memset(s, 0, sizeof(s));
	memset(r, 0, sizeof(r));
	memset(l, 0, sizeof(l));

	for (int i = 0; i < 12; i++) v[i] = 1;

	char a[N], b[N], c[N];
	for (int i = 0; i < 3; i++) {
		scanf("%s%s%s", a, b, c);
		cnt[i] = strlen(a);

		for (int j = 0; j < cnt[i]; j++) l[i][j] = a[j] - ‘A‘;
		for (int j = 0; j < cnt[i]; j++) r[i][j] = b[j] - ‘A‘;

		if (c[0] == ‘e‘) s[i] = 0;
		else if (c[0] == ‘u‘) s[i] = 1;
		else if (c[0] == ‘d‘) s[i] = -1;
	}
}

bool judge() {
	for (int i = 0; i < 3; i++) {
		int p = 0, q = 0;
		for (int j = 0; j < cnt[i]; j++) {
			p += v[l[i][j]]; q += v[r[i][j]];
		}
		if (s[i] == 0 && p != q) return false;
		if (s[i] > 0 && p <= q) return false;
		if (s[i] < 0 && p >= q) return false;
	}

	int x;
	for (x = 0; x < 12; x++) if(v[x] != 1) break;
	printf("%c is the counterfeit coin and it is %s.\n", ‘A‘ + x, v[x] == 0 ? "light" : "heavy");
	return true;
}

void solve() {
	for (int i = 0; i < 12; i++) {
		v[i] = 2;
		if (judge()) return;
		v[i] = 0;
		if (judge()) return;
		v[i] = 1;
	}
}

int main() {
	int cas;
	scanf("%d", &cas);
	while (cas--) {
		init();
		solve();
	}
	return 0;
}


uva 608 - Counterfeit Dollar(枚举)

原文:http://blog.csdn.net/keshuai19940722/article/details/18826899

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!