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

hdoj 2522 A simple problem 【模拟】

时间:2014-09-06 16:08:43      阅读:143      评论:0      收藏:0      [点我收藏+]

标签:数学   模拟   

题意:算出1/n的结果,循环小数只输出第一个循环节

策略:模拟1除去n即可。

判断是否是循环节只需要找到%n之后的模是否出现就好了。

代码:

#include <stdio.h>
#include <string.h>
#define M 100005
bool vis[M];
int main(){
	int t, n;
	scanf("%d", &t);
	while(t --){
		scanf("%d", &n);
		if(n == 1||n == -1){
			printf("%d", n); continue;
		}
		if(n < 0){
			n = -n;
			printf("-");
		}
		memset(vis, 0, sizeof(vis));
		int cur = 1;
		printf("0.");
		vis[1] = 1;
		while(cur){
			cur *= 10;
			printf("%d", cur/n);
			cur %= n;
			if(vis[cur]) break;
			else vis[cur] = 1;
		}
		puts("");
	}
	return 0;
}
题目链接:点击打开链接

hdoj 2522 A simple problem 【模拟】

标签:数学   模拟   

原文地址:http://blog.csdn.net/shengweisong/article/details/39101421

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