比赛 EYOI与SBOI开学欢乐赛4th 评测结果 AAAAAAEWEW
题目名称 烟雾与火焰 最终得分 60
用户昵称 什么都想学什么都学了一点的晓无痕 运行时间 0.395 s
代码语言 C++ 内存使用 3.15 MiB
提交时间 2022-09-12 19:56:33
显示代码纯文本
#include<bits/stdc++.h>
using namespace std;
int n;
int ans=1;
int a[3];
bool b[1000010]={0};
void find(long long rest)
{
    if(rest<0)
    {
        return;
    }
    for(int i=1;i<=3;++i)
    {
        if(rest>=a[i]&&b[rest-a[i]]==0)
        {
          ans++;
          b[rest-a[i]]=1;
          find(rest-a[i]);  
        }
    }
    return;
}
int main()
{
    freopen("burnTokyo.in","r",stdin);
    freopen("burnTokyo.out","w",stdout);
    scanf("%d%d%d%d",&n,&a[1],&a[2],&a[3]);
    find(n-1);
   printf("%d",ans);
    return 0;
}