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

vijos1104 采药

时间:2017-06-09 23:44:02      阅读:176      评论:0      收藏:0      [点我收藏+]

标签:int   color   sdi   tchar   name   pac   names   inline   01背包   

  不用说了,裸的01背包。

#include<cstdio>
#include<cctype>
#include<algorithm>
using namespace std;
inline int read(){
    char c; while(c=getchar(),!isdigit(c)); int x=c-0;
    while(c=getchar(),isdigit(c)) x=x*10+c-0; return x;
}
int f[1001];
int main(){
    int t=read(),m=read();
    while(m--){
        int v=read(),x=read();
        for(int i=t;i>=v;i-=1)
            f[i]=max(f[i-v]+x,f[i]);
    }
    printf("%d",f[t]);
    return 0;
}

 

vijos1104 采药

标签:int   color   sdi   tchar   name   pac   names   inline   01背包   

原文地址:http://www.cnblogs.com/yuao/p/6973982.html

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