(HDU)1302 -- The Snail(蜗牛)

Posted ACDoge

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了(HDU)1302 -- The Snail(蜗牛)相关的知识,希望对你有一定的参考价值。

题目链接:http://vjudge.net/problem/HDU-1302

分析:这题的限制要求很多,一天分为白天和黑夜。并不能直接用上升-下降作为一天变化量(万一白天就出去了呢?)。

一开始做的时候初始位置要设置double型的0,我写成了int型,郁闷了半天。

要注意up的距离不可能是负的,就算很疲劳。

 1 #include <cstdio>
 2 #include <cstring>
 3 #include <cmath>
 4 #include <iostream>
 5 #include <algorithm>
 6 #include <string>
 7 #include <cstdlib>
 8 
 9 using namespace std;
10 
11 int main()
12 {
13     double  height,up,down,factor,delta;
14     while(~scanf("%lf",&height))
15     {
16         if(height==0) break;
17         scanf("%lf %lf %lf",&up,&down,&factor);
18         int day=0,flag=0;
19         double place=0,first=up;
20         delta=(first*factor*0.01);
21         for(day=1;;day++)
22         {
23             if(up>=0) place+=up;
24             if(place>height)
25             {
26                 flag=1;
27                 break;
28             }
29             place-=down;
30             if(place<0)
31             {
32                 flag=0;
33                 break;
34             }
35             if(up>=0) up-=delta;
36         }
37         if(flag) printf("success on day %d\n",day);
38         else printf("failure on day %d\n",day);
39     }
40     return 0;
41 }

 

以上是关于(HDU)1302 -- The Snail(蜗牛)的主要内容,如果未能解决你的问题,请参考以下文章

洛谷 P1560 [USACO5.2]蜗牛的旅行Snail Trails(不明原因的scanf错误)

Pygame入门 2022

The Lost House

PRCT-1302 the OCR has an invalid ip address

Snail—UI学习之初识

USACO snail