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

51Nod - 1035 最长的循环节

时间:2017-05-06 22:57:51      阅读:200      评论:0      收藏:0      [点我收藏+]

标签:http   ==   end   ace   小数   code   black   turn   int   

51Nod - 1035 最长的循环节

正整数k的倒数1/k,写为10进制的小数如果为无限循环小数,则存在一个循环节,求<=n的数中,倒数循环节长度最长的那个数,假如存在多个最优的答案,输出所有答案中最大的那个数。
 
 
1/6= 0.1(6) 循环节长度为1
1/7= 0.(142857) 循环节长度为6
1/9= 0.(1)  循环节长度为1
Input
输入n(10 <= n <= 1000)
Output
输出<=n的数中倒数循环节长度最长的那个数
Input示例
10
Output示例
7

 

题解: 

    使用直接方法。用 map 来辅助计算循环节。 

 

#include <iostream> 
#include <map>
using namespace std;  
const int MAXN = 1000 + 5; 

int cnt[MAXN]; 

int Find(int n){
	int num = 1, idx = 1, ans;  
	map<int, int> mp; 
	while(1){
		if(num == 0){
			return 0; 
		}
		while(num < n){
			num = num * 10; 
		}
		if(mp.find(num) == mp.end()){
			mp[ num ] = idx; 
			idx++; 
		}else{
			ans = idx - mp[ num ]; 
			break; 
		}
		num = num % n;
	}
	return ans; 
}

void init(){
	for(int i=2; i<=1000; ++i){
		cnt[i] = Find(i); 
	}
}

int main(){

	int n, ans, ans_tmp; 
	init(); 
	while(scanf("%d", &n) != EOF){
		ans = 0, ans_tmp = 0; 
		for(int i=1; i<=n; ++i){
			if(ans_tmp < cnt[i]){
				ans_tmp = cnt[i]; 
				ans = i;  
			}
		}
		printf("%d\n", ans ); 
	}
	return 0; 
}

  

 

51Nod - 1035 最长的循环节

标签:http   ==   end   ace   小数   code   black   turn   int   

原文地址:http://www.cnblogs.com/zhang-yd/p/6818686.html

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