码迷,mamicode.com
首页 > 其他好文 > 详细

UVA 1482 - Playing With Stones(SG打表规律)

时间:2014-07-16 14:47:36      阅读:206      评论:0      收藏:0      [点我收藏+]

标签:style   http   color   os   for   io   

UVA 1482 - Playing With Stones

题目链接

题意:给定n堆石头,每次选一堆取至少一个,不超过一半的石子,最后不能取的输,问是否先手必胜

思路:数值很大,无法直接递推sg函数,打出前30项的sg函数找规律

代码:

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

int t, n;
long long num;

long long SG(long long x) {
	return x % 2 == 0 ? x : SG(x / 2);
}

int main() {
	scanf("%d", &t);
	while (t--) {
		scanf("%d", &n);
		long long ans = 0;
		for (int i = 0; i < n; i++) {
			scanf("%lld", &num);
			ans ^= SG(num);
  		}
  		printf("%s\n", ans == 0 ? "NO" : "YES");
 	}
	return 0;
}


UVA 1482 - Playing With Stones(SG打表规律),布布扣,bubuko.com

UVA 1482 - Playing With Stones(SG打表规律)

标签:style   http   color   os   for   io   

原文地址:http://blog.csdn.net/accelerator_/article/details/37875285

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!