回 帖 发 新 帖 刷新版面

主题:[讨论]猪八戒吃饼问题

在 TJU 上晃发现这样一道新题
  http://acm.tongji.edu.cn/shownewproblem.php?problem_id=1598

很有意思的一道题,至于所提及的方法大家也能想出来,但不知最后怎么实现呢?

回复列表 (共2个回复)

沙发

你想怎么做呢?就是分类讨论吧:
n<=s*2时,time=2;
n>s*2时,time=ceil(n/s);

板凳

#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;
}

我来回复

您尚未登录,请登录后再回复。点此登录或注册