hdu 3033 I love sneakers! 패 킷

10140 단어 love
제목 링크: http://acm.hdu.edu.cn/showproblem.php?pid=3033
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 }

좋은 웹페이지 즐겨찾기