UVA - 202 Repeating Decimals

Repeating Decimals

 UVA - 202 

题目传送门

解决方法:模拟一下除法,及时记录余数,当一个余数第二次出现时证明开始循环

AC代码

#include <cstdio>
#include <iostream>
#include <algorithm>
#include <cmath>
#include <cstdlib>
#include <cstring>
#include <map>
#include <stack>
#include <queue>
#include <vector>
#include <bitset>
#include <set>
#include <utility>
#include <sstream>
#include <iomanip>
using namespace std;
typedef long long ll;
typedef unsigned long long ull;
#define inf 0x3f3f3f3f
#define rep(i,l,r) for(int i=l;i<=r;i++)
#define lep(i,l,r) for(int i=l;i>=r;i--)
#define ms(arr) memset(arr,0,sizeof(arr))
//priority_queue<int,vector<int> ,greater<int> >q;
const int maxn = (int)1e5 + 5;
const ll mod = 1e9+7;
int yushu[maxn];
int shang[maxn];
int wei[maxn];
int main() 
{#ifndef ONLINE_JUDGEfreopen("in.txt", "r", stdin);#endif//freopen("out.txt", "w", stdout);ios::sync_with_stdio(0),cin.tie(0);int n,m;int cnt=0;while(scanf("%d %d",&n,&m)!=EOF){int k=n;ms(yushu);ms(shang);ms(wei);int count=0;shang[count++]=n/m;n=n%m;while(!wei[n]&&n){wei[n]=count;yushu[count]=n;shang[count++]=n*10/m;n=n*10%m;}printf("%d/%d = %d.",k,m,shang[0]);int i;for(i=1;i<count&&i<=50;i++){if(yushu[i]==n&&n)printf("(");printf("%d",shang[i]);}if(n==0)printf("(0");if(count>50)printf("...");printf(")\n");printf("   %d = number of digits in repeating cycle\n\n",!n?1:count-wei[n]);}return 0;
}

 

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/536324.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

UVA - 10340 ​​​​​​​All in All

All in All UVA - 10340 题目传送门 将两个字符串对比一下即可。 AC代码&#xff1a; #include <cstdio> #include <iostream> #include <algorithm> #include <cmath> #include <cstdlib> #include <cstring> #include <map> …

UVA - 1587 ​​​​​​​Box

Box UVA - 1587 题目传送门 解决方法&#xff1a;按照边在12个长宽出现的次数和出现在几个矩形里来判定就行了 总共出现一个长度&#xff0c;满足条件 总共出现两个长度&#xff0c;则其中一个长度在12个数里出现4次&#xff0c;并在四个矩形中出现 总共出现三个长度&#x…

UVA - 1588 ​​​​​​​Kickdown

Kickdown UVA - 1588 题目传送门 解决方法&#xff1a;上板不动&#xff0c;下板向左移&#xff1b;上板不动&#xff0c;下板向右移。 AC代码&#xff1a; #include <cstdio> #include <iostream> #include <algorithm> #include <cmath> #inclu…

UVA - 1339 ​​​​​​​Ancient Cipher

Ancient Cipher UVA - 1339 题目传送门 解决方法&#xff1a;模拟一下转换过程即可。 AC代码&#xff1a; #include <cstdio> #include <iostream> #include <algorithm> #include <cmath> #include <cstdlib> #include <cstring> #i…

UVA - 489 ​​​​​​​Hangman Judge

Hangman Judge UVA - 489 题目传送门 PS.此题Udebug有毒&#xff0c;即使100组样例全过&#xff0c;但还是WA&#xff0c;心塞。 这是我自己的代码&#xff0c;悲催的WA了 #include <cstdio> #include <iostream> #include <algorithm> #include <cm…

UVA - 133 ​​​​​​​The Dole Queue

The Dole Queue UVA - 133 题目传送门 模拟一遍过程&#xff0c;注&#xff1a;可能会选中同一个人 AC代码&#xff1a; #include <cstdio> #include <iostream> #include <algorithm> #include <cmath> #include <cstdlib> #include <c…

UVA - 213 Message Decoding

Message Decoding UVA - 213 题目传送门 emmmm&#xff0c;此题按照紫书上的思路来即可&#xff0c;要么太复杂 AC代码&#xff1a; #include <cstdio> #include <iostream> #include <algorithm> #include <cmath> #include <cstdlib> #in…

UVA - 512 ​​​​​​​Spreadsheet Tracking

Spreadsheet Tracking UVA - 512 题目传送门 紫书第二个思路十分巧妙&#xff0c;能用很少的代码解出此题。 AC代码&#xff1a; #include <cstdio> #include <iostream> #include <algorithm> #include <cmath> #include <cstdlib> #inclu…

UVA - 1589 ​​​​​​​Xiangqi

Xiangqi UVA - 1589 题目传送门 解决方法&#xff1a;判断黑棋是否能有可以下的地方 AC代码&#xff1a; #include <cstdio> #include <iostream> #include <algorithm> #include <cmath> #include <cstdlib> #include <cstring> #in…

UVA - 12412 ​​​​​​​A Typical Homework (a.k.a Shi Xiong Bang Bang Mang)

A Typical Homework (a.k.a Shi Xiong Bang Bang Mang) UVA - 12412 题目传送门 emmmm&#xff0c;不想表达什么&#xff0c;udbug上的数据全过&#xff0c;可就是WA。。。。 AC了的代码&#xff08;大佬的代码&#xff09; #include <bits/stdc.h> using namespace…

【思维】draw!

题目&#xff1a; You still have partial information about the score during the historic football match. You are given a set of pairs (ai,bi)(ai,bi), indicating that at some point during the match the score was "aiai: bibi". It is known that if t…

【数学】Birthday

题目&#xff1a; Cowboy Vlad has a birthday today! There are nn children who came to the celebration. In order to greet Vlad, the children decided to form a circle around him. Among the children who came, there are both tall and low, so if they stand in a…

【递推】Ayoub and Lost Array

题目&#xff1a;Ayoub had an array aa of integers of size nn and this array had two interesting properties: All the integers in the array were between ll and rr (inclusive). The sum of all the elements was divisible by 33. Unfortunately, Ayoub has lost hi…

Super-palindrome【字符串+思维】

Super-palindrome 时间限制: 1 Sec 内存限制: 128 MB 提交: 595 解决: 231 [提交] [状态] [命题人:admin] 题目描述 You are given a string that is consisted of lowercase English alphabet. You are supposed to change it into a super-palindrome string in minimum ste…

Hakase and Nano【博弈】

Hakase and Nano 时间限制: 1 Sec 内存限制: 128 MB 提交: 533 解决: 155 [提交] [状态] [命题人:admin] 题目描述 Hakase and Nano are playing an ancient pebble game (pebble is a kind of rock). There are n packs of pebbles, and the i-th pack contains ai pebble…

【思维】过分的谜题

题目描述 2060年是云南中医学院的百年校庆&#xff0c;于是学生会的同学们搞了一个连续猜谜活动&#xff1a;共有10个谜题&#xff0c;现在告诉所有人第一个谜题&#xff0c;每个谜题的答案就是下一个谜题的线索....成功破解最后一个谜题后&#xff0c;答案就是指向奖励的线索…

【bfs】调酒壶里的酸奶

题目描述 最近小w学了一手调酒的技巧&#xff0c;这么帅的操作&#xff0c;说不定能靠这个俘获女神的芳心&#xff0c;为了在女神面前露一手&#xff0c;他想在学校里建一个"pub"&#xff0c;但是显然学校不可能让他真的建一个"pub"&#xff0c;那么他退而…

【dfs】Election of Evil

题目描述 Dylan is a corrupt politician trying to steal an election. He has already used a mind-control technique to enslave some set U of government representatives. However, the representatives who will be choosing the winner of the election is a differe…

【思维】Iranian ChamPions Cup

题目描述 The Iranian ChamPions Cup (ICPC), the most prestigious football league in Iran, is reaching its end, and people are eagerly waiting for the finals, which happened to be between the two most popular Iranian teams, Persepolis and Esteghlal. The ICP…

【数学】Chaarshanbegaan at Cafebazaar

题目描述 Chaarshanbegaan is a gathering event at Cafebazaar similar to TGIF events at Google. Some entertainment programs like pantomime, foosball, Xbox/PS4, and several board games are part of the event. You are going to set up a dart game in Chaarshanbe…