码迷,mamicode.com
首页 > 其他好文 > 详细

NYOJ 49 开心的小明

时间:2014-08-23 13:56:00      阅读:187      评论:0      收藏:0      [点我收藏+]

标签:style   blog   http   color   os   io   for   问题   div   

题目链接:http://acm.nyist.net/JudgeOnline/problem.php?pid=49

 

思路:典型的01背包问题。权值为a*b。哎提交了好几次才A掉,还是做的题少了。。

 

代码:

 
#include <iostream>
#include<cstring> 
using namespace std;

int dp[30001];

int main()
{
    int num;
    cin>>num;
    int a,b;
    int n,m;
    while(num--)
    {
            memset(dp,0,sizeof(dp));
            cin>>n>>m;                
            for(int i=1;i<=m;i++)
            {
                cin>>a>>b;
                for(int j=n;j>=a;j--)
                    dp[j] = max(dp[j],dp[j-a]+a*b);
             }
        cout<<dp[n]<<endl;
    }
    return 0;
}         

 

NYOJ 49 开心的小明

标签:style   blog   http   color   os   io   for   问题   div   

原文地址:http://www.cnblogs.com/ltwy/p/3930969.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!