sgu 146 The Runner

题目链接:http://acm.sgu.ru/problem.php?contest=0&problem=146

题意:在一个圆形跑道上,给出一个每一段的运动速度和时间,问最后的距离起点的距离。

思路:将长度扩大10000来避免浮点运算,但是有个地方真是让我无法理解就是输入说是“with 4 signs after decimal point”,其意思不是只是输入四位小数,而是让你将输入精确到四位小数,所以得对输入结果进行四舍五入,这里新学到了一个round函数。

code:

#include <cstdio>
#include <cstdlib>
#include <iostream>
#include <cmath>

using namespace std;

typedef long long LL;

int main()
{
    int n;
    double ll,ans;
    LL L,t,v,res;
    res=0;
    scanf("%lf %d",&ll,&n);
    L=round(ll*10000);
    for(int i=0;i<n;i++){
        scanf("%lld%lld",&t,&v);
        res=(res+(t*v*10000)%L)%L;
    }
    ans=(double)res/10000;
    if(ll-ans<ans) ans=ll-ans;
    printf("%.4f\n",ans);
    return 0;
}


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值