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

UVa 10176 - Ocean Deep ! - Make it shallow !!

时间:2017-06-10 10:35:05      阅读:145      评论:0      收藏:0      [点我收藏+]

标签:除法   return   new   sha   track   algorithm   using   ios   字符   

题目:给你一个二进制串。推断是否能被131071 整除

分析:数论。直接模拟除法运算,求出余数就可以。

说明:注意可能有非法字符(比如空格)。

#include <algorithm>
#include <iostream>
#include <cstdlib>
#include <cstring>
#include <cstdio>
#include <cmath>

using namespace std;

char buf[10010],temp[110]; 

int main()
{
	int count = 0,len = 0;
	while (~scanf("%s",&temp)) {
		len = strlen(temp);
		count = 0;
		while (temp[len-1] != '#') {
			for (int i = 0 ; i < len ; ++ i)
				if (temp[i] == '0' || temp[i] == '1')
					buf[count ++] = temp[i];
			scanf("%s",&temp);
			len = strlen(temp);
		}
		for (int i = 0 ; i < len ; ++ i)
			if (temp[i] == '0' || temp[i] == '1')
				buf[count ++] = temp[i];
		buf[count] = 0;
		
		int r = 0;
		for (int i = 0 ; i < count ; ++ i) {
			r <<= 1;
			r += buf[i]-'0';
			r %= 131071;
		}
		
		if (r) printf("NO\n");
		else printf("YES\n");
	}
    return 0;
}


UVa 10176 - Ocean Deep ! - Make it shallow !!

标签:除法   return   new   sha   track   algorithm   using   ios   字符   

原文地址:http://www.cnblogs.com/blfbuaa/p/6977759.html

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