hdu 2602 Bone Collector(나의 첫 번 째 01 가방)
Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 32768/32768 K (Java/Others)Total Submission(s): 7904 Accepted Submission(s): 2949
Problem Description
Many years ago , in Teddy’s hometown there was a man who was called “Bone Collector”. This man like to collect varies of bones , such as dog’s , cow’s , also he went to the grave …
The bone collector had a big bag with a volume of V ,and along his trip of collecting there are a lot of bones , obviously , different bone has different value and different volume, now given the each bone’s value along his trip , can you calculate out the maximum of the total value the bone collector can get ?
Input
The first line contain a integer T , the number of cases.
Followed by T cases , each case three lines , the first line contain two integer N , V, (N <= 1000 , V <= 1000 )representing the number of bones and the volume of his bag. And the second line contain N integers representing the value of each bone. The third line contain N integers representing the volume of each bone.
Output
One integer per line representing the maximum of the total value (this number will be less than 2
31).
Sample Input
1
5 10
1 2 3 4 5
5 4 3 2 1
Sample Output
14
이 문 제 는 가장 쉬 운 01 가방,역순!!
for i=1..N for v=V..0 f[v]=max{f[v],f[v-c[i]]+w[i]};
링크:http://acm.hdu.edu.cn/showproblem.php?pid=2602
코드:
#include <iostream>
#include <stdio.h>
#include <memory.h>
using namespace std;
int c[1005], w[1005];
int bag[1005];
int N, V;
void _01_bag() //01 : !
{
int i, j;
memset(bag, 0, sizeof(bag));
for(i = 0; i < N; i++)
{
for(j = V; j >= c[i]; j--)
{
bag[j] = max(bag[j], bag[j-c[i]] + w[i]);
}
}
}
int main()
{
int i, t;
scanf("%d", &t);
while(t--)
{
scanf("%d %d", &N, &V);
for(i = 0; i < N; i++)
scanf("%d", &w[i]);
for(i = 0; i < N; i++)
scanf("%d", &c[i]);
_01_bag();
printf("%d
", bag[V]);
}
return 0;
}
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
정수 반전Udemy 에서 공부 한 것을 중얼거린다 Chapter3【Integer Reversal】 (예) 문자열로 숫자를 반전 (toString, split, reverse, join) 인수의 수치 (n)가 0보다 위 또는 ...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.