USACO 2.4 Fractions to Decimals (fracdec)

本文介绍了一个C++程序,用于将分数转换为小数形式,并能够识别重复的小数序列。通过除法过程记录余数,一旦发现重复余数,则确定小数部分出现循环。程序能够处理整数部分和小数部分,输出格式清晰且易于理解。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

// Main idea
// mimic the division process; During this process, we record the  
// remainder. If the one remainder have appeared before, then the the decimal 
// representation has a repeating sequence of digits. 
// Use result[] to record the quotient
// Assume n is remainder and use position[n] to record the index of quotient in result[]

/*
ID: haolink1
PROG: fracdec
LANG: C++
*/

//#include <iostream>
#include <fstream>
#include<cstring>
using namespace std;

char result[100000];
int position[100000];

int IntegerPart(int a){
    if(a == 0)
        return 1;
    int i = 0;
    while(a){
        a /= 10;
        i++;
    }
    return i;
}

int main(){
    int N = 0;
    int D = 1;
    int tmp,index,tmp_m;
    bool flag = 0;
    ifstream fin("fracdec.in");
    ofstream fout("fracdec.out");
    fin >> N >> D;
    if(N%D == 0){
        fout<<N/D<<".0"<<endl;
    }else{
        //Handle the integer digits
        tmp = N/D;
        index = IntegerPart(tmp);
        for(int i = index-1; i >= 0; i--){
            tmp_m = tmp%10; 
            result[i] = '0' + tmp_m;
            tmp /= 10;
        }
        result[index++] = '.';
        //Handle the digits after decimal point
        memset(position,-1,sizeof(position));
        while(1){
            tmp_m = N % D; 
            if(tmp_m == 0){
                break;
            }else if(position[tmp_m] != -1){
                flag = 1;
                break;
            }
            tmp = tmp_m * 10/D;
            position[tmp_m] = index;
            result[index++] = '0' + tmp;
            N = tmp_m*10;
        }
        if(flag){//Handle repeating sequence
            int m = position[tmp_m]; 
            for(int i = index-1; i >= m; i--){
                result[i+1] = result[i];
            }
            result[m] = '(';
            result[++index] = ')';
            index++;
        }
        //test output format
//        index = 152;
//        for(int i = 0; i < 153; i++){
//            result[i] = '1';
//        }

        int counter = 0;
        for(int i = 0; i < index; i++){
            fout << result[i];
            counter++;
            if(counter % 76 == 0){
                counter = 0;
                fout<<endl;
            }
        }
        if(counter % 76 != 0)
            fout<<endl;
    }
    return 0;
}

回答: 题目P1518 \[USACO2.4\] 两只塔姆沃斯牛是一道模拟题,题目要求判断Farmer John和两头牛是否会相遇。解题思路可以分为两种方法。一种方法是记录二者的状态,如果出现了与前面相同的状态则说明陷入了死循环。具体实现步骤可以使用数组来记录Farmer John和两头牛的坐标、方向等状态信息,然后判断是否出现了重复的状态。另一种方法是利用博弈的思想,如果二者会同时回到一种状态,那么说明他们不会再相遇了,因为这时候他们已经陷入了一种对称性的状态。通过判断是否存在一种线性关系,可以确定二者是否会相遇。\[1\]\[2\]\[3\] #### 引用[.reference_title] - *1* [P1518 [USACO2.4]两只塔姆沃斯牛 The Tamworth Two](https://blog.csdn.net/TD123456q/article/details/125688037)[target="_blank" data-report-click={"spm":"1018.2226.3001.9630","extra":{"utm_source":"vip_chatgpt_common_search_pc_result","utm_medium":"distribute.pc_search_result.none-task-cask-2~all~insert_cask~default-1-null.142^v91^insertT0,239^v3^insert_chatgpt"}} ] [.reference_item] - *2* [洛谷P1518 [USACO2.4]两只塔姆沃斯牛 The Tamworth Two 题解 (C/C++)](https://blog.csdn.net/Jason__Jie/article/details/115027619)[target="_blank" data-report-click={"spm":"1018.2226.3001.9630","extra":{"utm_source":"vip_chatgpt_common_search_pc_result","utm_medium":"distribute.pc_search_result.none-task-cask-2~all~insert_cask~default-1-null.142^v91^insertT0,239^v3^insert_chatgpt"}} ] [.reference_item] - *3* [(移动方向状态标志)P1518 [USACO2.4]两只塔姆沃斯牛 The Tamworth Two题解](https://blog.csdn.net/m0_57221330/article/details/119980758)[target="_blank" data-report-click={"spm":"1018.2226.3001.9630","extra":{"utm_source":"vip_chatgpt_common_search_pc_result","utm_medium":"distribute.pc_search_result.none-task-cask-2~all~insert_cask~default-1-null.142^v91^insertT0,239^v3^insert_chatgpt"}} ] [.reference_item] [ .reference_list ]
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值