H - Climbing Worm 문제 풀이 보고서(장우)
Time Limit:1000MS Memory Limit:32768KB 64bit IO Format:%I64d & %I64u
Submit
Status
Practice
HDU 1049
Description
An inch worm is at the bottom of a well n inches deep. It has enough energy to climb u inches every minute, but then has to rest a minute before climbing again. During the rest, it slips down d inches. The process of climbing and resting then repeats. How long before the worm climbs out of the well? We'll always count a portion of a minute as a whole minute and if the worm just reaches the top of the well at the end of its climbing, we'll assume the worm makes it out.
Input
There will be multiple problem instances. Each line will contain 3 positive integers n, u and d. These give the values mentioned in the paragraph above. Furthermore, you may assume d < u and n < 100. A value of n = 0 indicates end of output.
Output
Each input instance should generate a single integer on a line, indicating the number of minutes it takes for the worm to climb out of the well.
Sample Input
10 2 1
20 3 1
0 0 0
Sample Output
17
19
제목: 고도 n, 분당 기어오르는 높이 u, 휴식 시 분당 내려가는 높이를 제시한다.먼저 1분만 올라가고 1분만 쉬세요. 이렇게 유추해서 높이 n까지 올라갈 때까지.제발 몇 분 걸렸어?n=0시에 끝납니다.또 초등학생 수학 문제야, 유목유!!!
[cpp] view plain copy
#include
using namespace std;
int main()
{
int n,u,d;//n은 올라갈 높이를 표시하고, u는 분당 올라갈 높이를 표시하며, d는 1분을 올라갈 때마다 쉬는 1분 안에 내려갈 높이를 나타낸다
while(cin>>n>>u>>d)
{
if(n==0)//n=0시에 끝납니다
break;
int min;//기록에 걸린 시간
int dis=0;//올라간 높이를 기록합니다
for(min=1;;min++)
{
//먼저 1분만 올라가고 1분만 더 쉬세요
if(min%2==0)
{
dis-=d;
}
else
{
dis+=u;
if (dis>=n)//높이 n에 도달하면 끝납니다
break;
}
}
cout<
}
return 0;
}
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
REST API (RESTfull API)란?REST는 Representational State Transfer라는 용어의 약자로 웹의 장점을 최대한 활용할 수 있도록 만들어진 네트워크 아키텍처 원리의 모음이다. 1. HTTP URI를 통해 자원을 명시하고 2...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.