输入输出细节处理,USACO Fractions to Decimals

算法还是很简单的,基本上学过小学除法算术的都知道,n/d的每位运算所得的余数只可能是0..d-1,如果在某处出现一个余数之前曾经出现过(在小数位上),那么可以肯定此时从该处到上次用出现这个这个商之间存在循环节。这样,就可以用基本的标记法就可以了。

所以这题其实麻烦的是输出的处理,又要加括号,又要求每行只能输出76个字符。麻烦!害得我又WA了两次,郁闷中。

输入输出细节处理,USACO Fractions to Decimals_第1张图片


/*
ID: fairyroad
TASK: fracdec
LANG: C++
*/
#include<fstream>
#include<vector>
using namespace std;
ifstream fin("fracdec.in");
ofstream fout("fracdec.out");

bool existed[100001];
size_t index[100001];
vector<int> remainder;

inline size_t countp(int num)
{
    if(!num) return 1;
    int res = 0;
    while(num) ++res, num/=10;
    return res;
}

int main()
{
    int n, d;
    fin>>n>>d;
    int f = 0, cnt = 0;
    bool flag = true; // 是否能整除,与加括号有关
    if(n >= d){ f = n/d; n = n%d; }
    while(!existed[n])
    {
        existed[n] = true;
        index[n] = cnt++;
        remainder.push_back(n*10/d);
        if((n*10)%d==0){flag = false;break;}
        n = (n*10)%d;
    }

    fout<<f<<'.';
    size_t charnum = countp(f)+1;
    for(size_t i = 0; i < remainder.size(); ++i)
    {
        if(charnum == 76) fout<<endl, charnum = 0;
        if(i == index[n] && flag)  ++charnum, fout<<'(';
        fout<<remainder[i];
        ++charnum;
    }
    if(flag) fout<<')';
    fout<<endl;

    return 0;
}



你可能感兴趣的:(c,算法)