记录编号 | 458225 | 评测结果 | AAAAAAAAAA | ||
---|---|---|---|---|---|
题目名称 | [NOIP 2006]开心的金明 | 最终得分 | 100 | ||
用户昵称 | 是否通过 | 通过 | |||
代码语言 | C++ | 运行时间 | 0.000 s | ||
提交时间 | 2017-10-10 17:18:41 | 内存使用 | 0.00 MiB | ||
/*written by 0koto*/ #prag\ ma GCC optimize("O1") #include<cstdio> #include<cctype> #include<iostream> #define loop(i,j,k) for(register int i=j;i<=k;++i) #define rloop(i,j,k) for(register int i=j;i>=k;--i) using namespace std; inline void in(int &x){ x=0;int f=1;char c=getchar(); while(!isdigit(c)){if(!(c-'-'))f=-1;c=getchar();} while (isdigit(c))x=(x<<3)+(x<<1)+(c^48),c=getchar(); x*=f; } inline void out(int x){ if(!x){putchar('0');return;} if(x<0)x=~x+1,putchar('-'); char c[30]={0}; while(x)c[++c[0]]=x%10+48,x/=10; while(c[0])putchar(c[c[0]--]); } int n,m,w[26],p[26],f[30001]; inline void dp(){ loop(i,1,m)rloop(j,n,w[i]) f[j]=max(f[j],f[j-w[i]]+p[i]); } inline int koto(){ freopen("happy.in","r",stdin); freopen("happy.out","w",stdout); in(n),in(m); loop(i,1,m) in(w[i]),in(p[i]),p[i]*=w[i]; dp(); out(f[n]); } int zero=koto(); int main(){;}