记录编号 |
379177 |
评测结果 |
AAAAAAAAAAAA |
题目名称 |
[USACO]总分 |
最终得分 |
100 |
用户昵称 |
HeHe |
是否通过 |
通过 |
代码语言 |
C++ |
运行时间 |
0.189 s |
提交时间 |
2017-03-05 20:22:12 |
内存使用 |
0.35 MiB |
显示代码纯文本
#include<iostream>
#include<cstdio>
#include<cstring>
using namespace std;
#define is_num(tmp) (tmp<='9'&tmp>='0')
inline int in(void){
char tmp(getchar());
int res(0),f(1);
while(!(is_num(tmp)||tmp=='-'))tmp=getchar();
if(tmp=='-')f=-1,tmp=getchar();
while(is_num(tmp))
res=(res<<1)+(res<<3)+(tmp^48),
tmp=getchar();
return res*f;
}
//#define LOCAL
int T,n,s,t,maxx;
int dp[10001];
int main(){
#ifndef LOCAL
freopen("inflate.in","r",stdin);
freopen("inflate.out","w",stdout);
#endif
T=in(),n=in();
for(int i=1;i<=n;++i){
s=in(),t=in();
for(int j=t;j<=T;++j){
dp[j]=max(dp[j],dp[j-t]+s);
}
}
printf("%d",dp[T]);
}