Codeforces Round #237 (Div. 2) / 404B Marathon (fmod或long long表示浮点)
Posted synapse7
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Codeforces Round #237 (Div. 2) / 404B Marathon (fmod或long long表示浮点)相关的知识,希望对你有一定的参考价值。
http://codeforces.com/contest/404/problem/B
这题很容易出现精度误差,解决方法有两种:
1. 分析知当d远大于a时,在计算除法时容易产生较大误差,故可以先用fmod把d减小。
2. 因为输入的小数至多到小数点后4位,故计算过程中的结果完全可以用long long存下来,这样就不用担心精度的问题了,且此法具有一定的普适性。
/*124ms,0KB*/
#include<bits/stdc++.h>
using namespace std;
double a;
void f(double len)
int c = ((int)(len / a)) % 4;
len = fmod(len, a);
if (c == 0) printf("%f 0\\n", len);
else if (c == 1) printf("%f %f\\n", a, len);
else if (c == 2) printf("%f %f\\n", a - len, a);
else printf("0 %f\\n", a - len);
int main()
double d;
int n;
scanf("%lf%lf%d", &a, &d, &n);
d = fmod(d, 4 * a); /// 若d远大于a,可以先 d %= 4*a
for (int i = 1; i <= n; ++i) f(d * i);
return 0;
以上是关于Codeforces Round #237 (Div. 2) / 404B Marathon (fmod或long long表示浮点)的主要内容,如果未能解决你的问题,请参考以下文章
Codeforces Round #436 E. Fire(背包dp+输出路径)
[ACM]Codeforces Round #534 (Div. 2)
Codeforces Round #726 (Div. 2) B. Bad Boy(贪心)