主题:[讨论]猪八戒吃饼问题
davidw017
[专家分:4170] 发布于 2005-06-06 20:47:00
在 TJU 上晃发现这样一道新题
http://acm.tongji.edu.cn/shownewproblem.php?problem_id=1598
很有意思的一道题,至于所提及的方法大家也能想出来,但不知最后怎么实现呢?
回复列表 (共2个回复)
沙发
不是归人 [专家分:1400] 发布于 2005-06-07 14:01:00
你想怎么做呢?就是分类讨论吧:
n<=s*2时,time=2;
n>s*2时,time=ceil(n/s);
板凳
compiler [专家分:80] 发布于 2005-06-12 23:02:00
#include <stdio.h>
#include <stdlib.h>
int main(int argc, char *argv[])
{
int n,s,t;
int tt;
scanf("%d%d%d",&n,&s,&t);
tt = (n / (2*s)) * 2 + 2 * (n % 2);
if(t > tt)
printf("Yes\n");
else
printf("No\n");
system("PAUSE");
return 0;
}
我来回复