UVa 10465 - Homer Simpson 백팩
Problem C:
Homer Simpson
Time Limit: 3 seconds Memory Limit: 32 MB
Homer Simpson, a very smart guy, likes eating Krusty-burgers. It takes Homer m minutes to eat a Krusty- burger. However, there�s a new type of burger in Apu�s Kwik-e-Mart. Homer likes those too. It takes him n minutes to eat one of these burgers. Given t minutes, you have to find out the maximum number of burgers Homer can eat without wasting any time. If he must waste time, he can have beer.
Input
Input consists of several test cases. Each test case consists of three integers m, n, t (0 < m,n,t < 10000). Input is terminated by EOF.
Output
For each test case, print in a single line the maximum number of burgers Homer can eat without having beer. If homer must have beer, then also print the time he gets for drinking, separated by a single space. It is preferable that Homer drinks as little beer as possible.
Sample Input
3 5 54
3 5 55
Sample Output
18
17
Problem setter: Sadrul Habib Chowdhury Solution author: Monirul Hasan (Tomal)
Time goes, you say? Ah no! Alas, Time stays, we go. -- Austin Dobson
---------
아 물 좋아 물.
---------
#include <iostream>
#include <cstdio>
#include <cstring>
using namespace std;
int n,m,t;
int f[11111];
int main()
{
while (~scanf("%d%d%d",&n,&m,&t))
{
memset(f,-1,sizeof(f));
f[0]=0;
for (int i=0;i<=t-n;i++)
{
if (f[i]>=0)
{
f[i+n]=max( f[i+n],f[i]+1 );
}
}
for (int i=0;i<=t-m;i++)
{
if (f[i]>=0)
{
f[i+m]=max( f[i+m],f[i]+1 );
}
}
if (f[t]!=-1)
{
printf("%d
",f[t]);
}
else
{
int ans=0;
int tmp=0;
for (int i=t;i>=0;i--)
{
if (f[i]!=-1)
{
ans=f[i];
tmp=i;
break;
}
}
printf("%d %d
",ans,t-tmp);
}
}
return 0;
}
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
49일차 - 2022.04.20Baekjoon에서 문제풀이 1) 문제 : 첫째 줄에는 별 1개, 둘째 줄에는 별 2개, N번째 줄에는 별 N개를 찍는 문제/ 첫째 줄에 N(1 ≤ N ≤ 100)이 주어진다. 첫째 줄부터 N번째 줄까지 차례대로 별...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.