POJ 1006

lidajun0717 2012-04-02 01:41:47
为什么提交上去老是说Wrong Answer,实例都通过了啊
题目地址:http://poj.org/problem?id=1006

#include <iostream>

using namespace std;

const int Physical = 23;
const int Emotional = 28;
const int Intellectual = 33;

int main()
{
int p, e, i, d;

cin >> p >> e >> i >> d;
int index = 1;
while (p != -1)
{
p += 23;
while (1)
{
while (p > e)
e += Emotional;
while (p < e)
p += Physical;

if (p == e && (e - i) % Intellectual == 0) break;
else if (p == e)
e += Emotional;
}

cout << "Case " << index << ": the next triple peak occurs in " << p - d << " days.";
cin >> p >> e >> i >> d;
index++;
}
return 0;
}
...全文
113 9 打赏 收藏 转发到动态 举报
写回复
用AI写文章
9 条回复
切换为时间正序
请发表友善的回复…
发表回复
www_adintr_com 2012-04-02
  • 打赏
  • 举报
回复
肯定不能过, 你输入 1 1 1 2, 你的结果是 -1
说下你的思路和步骤看有什么漏洞没.
www_adintr_com 2012-04-02
  • 打赏
  • 举报
回复
1. 你的输出需要加上换行符才行.
2. 多读题, 你用 1 1 1 0 来测试你的程序得到的答案就会不符合要求. 题目要求 "所求的时间小于21252".
hen_hao_ji 2012-04-02
  • 打赏
  • 举报
回复
http://apps.hi.baidu.com/share/detail/18920065
楼主参考下这个解题报告,,WA说明算法有问题。。
lidajun0717 2012-04-02
  • 打赏
  • 举报
回复
[Quote=引用 7 楼 的回复:]

当前时间是第 4 个参数 0 呀。
[/Quote]

我改了一下程序,还是不行,快疯了~~~

#include <iostream>

using namespace std;

const int Physical = 23;
const int Emotional = 28;
const int Intellectual = 33;

int main()
{
int p, e, i, d;

cin >> p >> e >> i >> d;
int index = 1;
while (p != -1)
{
if (p == e && p == i && p == d)
p += Physical;
while (1)
{
while (p > e)
e += Emotional;
while (p < e)
p += Physical;

if (p == e && (e - i) % Intellectual == 0) break;
else if (p == e)
e += Emotional;
}

cout << "Case " << index << ": the next triple peak occurs in " << p - d << " days." << endl;
cin >> p >> e >> i >> d;
index++;
}
return 0;
}

www_adintr_com 2012-04-02
  • 打赏
  • 举报
回复
当前时间是第 4 个参数 0 呀。
lidajun0717 2012-04-02
  • 打赏
  • 举报
回复
[Quote=引用 5 楼 的回复:]

引用 3 楼 的回复:

引用 2 楼 的回复:

1. 你的输出需要加上换行符才行.
2. 多读题, 你用 1 1 1 0 来测试你的程序得到的答案就会不符合要求. 题目要求 "所求的时间小于21252".


那怎么保证所求时间小于21252呢?如果确实是大于21252咋办啊~~~~


不会确实大于 21252 的,因为这三个数的最小公倍数是 21252。
1……
[/Quote]
但是题目中说的是下一个triple peak,1 1 1 0如果是1的话,不就是当前的triple peak吗??
www_adintr_com 2012-04-02
  • 打赏
  • 举报
回复
[Quote=引用 3 楼 的回复:]

引用 2 楼 的回复:

1. 你的输出需要加上换行符才行.
2. 多读题, 你用 1 1 1 0 来测试你的程序得到的答案就会不符合要求. 题目要求 "所求的时间小于21252".


那怎么保证所求时间小于21252呢?如果确实是大于21252咋办啊~~~~
[/Quote]

不会确实大于 21252 的,因为这三个数的最小公倍数是 21252。
1 1 1 0 的正确答案应该是 1.
lidajun0717 2012-04-02
  • 打赏
  • 举报
回复
[Quote=引用 1 楼 的回复:]

http://apps.hi.baidu.com/share/detail/18920065
楼主参考下这个解题报告,,WA说明算法有问题。。
[/Quote]

中国剩余定理我也知道,但是我现在就想知道我的算法到底错在哪儿了???
lidajun0717 2012-04-02
  • 打赏
  • 举报
回复
[Quote=引用 2 楼 的回复:]

1. 你的输出需要加上换行符才行.
2. 多读题, 你用 1 1 1 0 来测试你的程序得到的答案就会不符合要求. 题目要求 "所求的时间小于21252".
[/Quote]

那怎么保证所求时间小于21252呢?如果确实是大于21252咋办啊~~~~
Biorhythms Time Limit: 1000MS Memory Limit: 10000K Total Submissions: 53539 Accepted: 15282 Description Some people believe that there are three cycles in a person's life that start the day he or she is born. These three cycles are the physical, emotional, and intellectual cycles, and they have periods of lengths 23, 28, and 33 days, respectively. There is one peak in each period of a cycle. At the peak of a cycle, a person performs at his or her best in the corresponding field (physical, emotional or mental). For example, if it is the mental curve, thought processes will be sharper and concentration will be easier. Since the three cycles have different periods, the peaks of the three cycles generally occur at different times. We would like to determine when a triple peak occurs (the peaks of all three cycles occur in the same day) for any person. For each cycle, you will be given the number of days from the beginning of the current year at which one of its peaks (not necessarily the first) occurs. You will also be given a date expressed as the number of days from the beginning of the current year. You task is to determine the number of days from the given date to the next triple peak. The given date is not counted. For example, if the given date is 10 and the next triple peak occurs on day 12, the answer is 2, not 3. If a triple peak occurs on the given date, you should give the number of days to the next occurrence of a triple peak. Input You will be given a number of cases. The input for each case consists of one line of four integers p, e, i, and d. The values p, e, and i are the number of days from the beginning of the current year at which the physical, emotional, and intellectual cycles peak, respectively. The value d is the given date and may be smaller than any of p, e, or i. All values are non-negative and at most 365, and you may assume that a triple peak will occur within 21252 days of the given date. The end of input is indicated by a line in which p = e = i = d = -1. Output For each test case, print the case number followed by a message indicating the number of days to the next triple peak, in the form: Case 1: the next triple peak occurs in 1234 days. Use the plural form ``days'' even if the answer is 1. Sample Input 0 0 0 0 0 0 0 100 5 20 34 325 4 5 6 7 283 102 23 320 203 301 203 40 -1 -1 -1 -1 Sample Output Case 1: the next triple peak occurs in 21252 days. Case 2: the next triple peak occurs in 21152 days. Case 3: the next triple peak occurs in 19575 days. Case 4: the next triple peak occurs in 16994 days. Case 5: the next triple peak occurs in 8910 days. Case 6: the next triple peak occurs in 10789 days. Source East Central North America 1999 生理周期 Time Limit: 1000MS Memory Limit: 10000K Total Submissions: 53539 Accepted: 15282 Description 人生来就有三个生理周期,分别为体力、感情和智力周期,它们的周期长度为23天、28天和33天。每一个周期中有一天是高峰。在高峰这天,人会在相应的方面表现出色。例如,智力周期的高峰,人会思维敏捷,精力容易高度集中。因为三个周期的周长不同,所以通常三个周期的高峰不会落在同一天。对于每个人,我们想知道何时三个高峰落在同一天。对于每个周期,我们会给出从当前年份的第一天开始,到出现高峰的天数(不一定是第一次高峰出现的时间)。你的任务是给定一个从当年第一天开始数的天数,输出从给定时间开始(不包括给定时间)下一次三个高峰落在同一天的时间(距给定时间的天数)。例如:给定时间为10,下次出现三个高峰同天的时间是12,则输出2(注意这里不是3)。 Input 输入四个整数:p, e, i和d。 p, e, i分别表示体力、情感和智力高峰出现的时间(时间从当年的第一天开始计算)。d 是给定的时间,可能小于p, e, 或 i。 所有给定时间是非负的并且小于365, 所求的时间小于21252。 当p = e = i = d = -1时,输入数据结束。 Output 从给定时间起,下一次三个高峰同天的时间(距离给定时间的天数)。 采用以下格式: Case 1: the next triple peak occurs in 1234 days. 注意:即使结果是1天,也使用复数形式“days”。 Sample Input 0 0 0 0 0 0 0 100 5 20 34 325 4 5 6 7 283 102 23 320 203 301 203 40 -1 -1 -1 -1 Sample Output Case 1: the next triple peak occurs in 21252 days. Case 2: the next triple peak occurs in 21152 days. Case 3: the next triple peak occurs in 19575 days. Case 4: the next triple peak occurs in 16994 days. Case 5: the next triple peak occurs in 8910 days. Case 6: the next triple peak occurs in 10789 days. Source East Central North America 1999 Translator 北京大学程序设计实习2007, Xie Di

64,693

社区成员

发帖
与我相关
我的任务
社区描述
C++ 语言相关问题讨论,技术干货分享,前沿动态等
c++ 技术论坛(原bbs)
社区管理员
  • C++ 语言社区
  • encoderlee
  • paschen
加入社区
  • 近7日
  • 近30日
  • 至今
社区公告
  1. 请不要发布与C++技术无关的贴子
  2. 请不要发布与技术无关的招聘、广告的帖子
  3. 请尽可能的描述清楚你的问题,如果涉及到代码请尽可能的格式化一下

试试用AI创作助手写篇文章吧