hdu 3033 I love sneakers! 패 킷
10140 단어 love
After months of hard working, Iserlohn finally wins awesome amount of scholarship. As a great zealot of sneakers, he decides to spend all his money on them in a sneaker store.
There are several brands of sneakers that Iserlohn wants to collect, such as Air Jordan and Nike Pro. And each brand has released various products. For the reason that Iserlohn is definitely a sneaker-mania, he desires to buy at least one product for each brand.Although the fixed price of each product has been labeled, Iserlohn sets values for each of them based on his own tendency. With handsome but limited money, he wants to maximize the total value of the shoes he is going to buy. Obviously, as a collector, he won’t buy the same product twice.Now, Iserlohn needs you to help him find the best solution of his problem, which means to maximize the total value of the products he can buy.
제목 설명: n 개의 물품, 다양한 브랜드 가 있 고 각 제품 은 3 개의 속성 a, b 와 c 가 있 으 며 각각 브랜드 종류, 가격 과 가 치 를 대표 한다.현재 당신 은 현금 m 와 k 개의 파트너 가 있 습 니 다. 모든 파트너 에 게 적어도 한 개의 물건 을 사 달라 고 요구 합 니 다. 얻 을 수 있 는 최대 가치 (번호 가 u 인 파트너 는 브랜드 종류 가 u 인 물품 만 얻 을 수 있 습 니 다) 를 구 합 니 다.
알고리즘 분석: 패 킷 패키지.dp [i] [j] 는 전 i 종 아 이 템 을 대표 하 며, 몸 에 j 원 이 획득 하 는 최대 가치 가 있 습 니 다.
1 #include<iostream>
2 #include<cstdio>
3 #include<cstring>
4 #include<cstdlib>
5 #include<cmath>
6 #include<algorithm>
7 #include<vector>
8 #include<queue>
9 #define inf 0x7fffffff
10 using namespace std;
11 const int maxn=100+10;
12
13 int n,m,k;
14 int dp[12][10000+10];
15 vector<pair<int,int> > vec[maxn];
16
17 int main()
18 {
19 while (scanf("%d%d%d",&n,&m,&k)!=EOF)
20 {
21 int a,b,c;
22 for (int i=1 ;i<=n ;i++) vec[i].clear();
23 for (int i=1 ;i<=n ;i++)
24 {
25 scanf("%d%d%d",&a,&b,&c);
26 vec[a].push_back(make_pair(b,c));
27 }
28 memset(dp,-1,sizeof(dp));
29 memset(dp[0],0,sizeof(dp[0]));
30 int flag=0;
31 // for (int i=1 ;i<=k ;i++)
32 // {
33 // int num=vec[i].size();
34 // for (int j=0 ;j<num ;j++)
35 // cout<<vec[i][j].first<<" "<<vec[i][j].second<<endl;
36 // cout<<endl;
37 // }
38 for (int i=1 ;i<=k ;i++)
39 {
40 int num=vec[i].size();
41 if (num==0) {flag=1;break; }
42 for (int u=0 ;u<num ;u++)
43 {
44 int p=vec[i][u].first;
45 for (int j=m ;j>=p ;j--)
46 {
47
48 int value=vec[i][u].second;
49 if (dp[i][j-p]!=-1)
50 dp[i][j]=max(dp[i][j],dp[i][j-p]+value);
51 if (dp[i-1][j-p]!=-1)
52 dp[i][j]=max(dp[i][j],dp[i-1][j-p]+value);
53 }
54 }
55 }
56 if (flag || dp[k][m]==-1) printf("Impossible
");
57 else printf("%d
",dp[k][m]);
58 }
59 return 0;
60 }
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
프로그램 원숭이 의 낭만적 인 이 진 표백편그날 발 렌 타인 데 이에 나 는 그녀 에 게 숫자 (01001001 00100000 011011011011010 01101001 00100000 0111001001 011011011011011101) 를 보 냈 다...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.