记录编号 |
259058 |
评测结果 |
AAAAAAAAAA |
题目名称 |
[NOIP 1996]砝码称重 |
最终得分 |
100 |
用户昵称 |
Hzoi_ |
是否通过 |
通过 |
代码语言 |
C++ |
运行时间 |
0.025 s |
提交时间 |
2016-05-08 06:56:50 |
内存使用 |
0.29 MiB |
显示代码纯文本
#include<cstdio>
#include<cstring>
#include<algorithm>
using namespace std;
namespace mine{
int __c,__x,__a[110],__i,__j;
bool __neg;
inline int getint(){
__x=__neg=0;
do __c=getchar();while(__c==' '||__c=='\n'||__c=='\r'||__c=='\t');
if(__c=='-'){
__neg=true;
__c=getchar();
}
for(;__c>='0'&&__c<='9';__c=getchar())__x=(__x<<1)+(__x<<3)+(__c^48);
if(__neg)return -__x;
return __x;
}
inline void putint(int __x){
__neg=__x<0;
if(__neg)__x=-__x;
__i=0;
do{
__a[__i++]=__x%10+48;
__x/=10;
}while(__x);
if(__neg)putchar('-');
for(__j=__i-1;__j>=0;__j--)putchar(__a[__j]);
}
}
using namespace mine;
const int maxv=1010,a[]={1,2,3,5,10,20};
bool f[maxv]={1,0};
int n,cnt=0;
int main(){
#define COGS
#ifdef COGS
freopen("fmcz.in","r",stdin);
freopen("fmcz.out","w",stdout);
#endif
for(int i=0;i<6;i++){
n=getint();
for(int k=0;k<n;k++)for(int j=1000;j>=a[i];j--){
if(!f[j]&&f[j-a[i]])cnt++;
f[j]|=f[j-a[i]];
}
}
putint(cnt);
return 0;
}