记录编号 |
26962 |
评测结果 |
AAAAAAAAAA |
题目名称 |
翻硬币 |
最终得分 |
100 |
用户昵称 |
PurpleShadow |
是否通过 |
通过 |
代码语言 |
C++ |
运行时间 |
0.004 s |
提交时间 |
2011-07-30 14:45:41 |
内存使用 |
0.26 MiB |
显示代码纯文本
#include <cstdio>
#include <cstring>
#include <algorithm>
using namespace std;
typedef long long LL;
const int INF=0x3f3f3f3f;
LL n,sum,Plus;
bool flag[10];
int MaxDep;
bool dfs(int x,int dep)
{
if (dep>MaxDep) return 0;
if (x==0) return 1;
bool find=0;
for (int i=1;i<=5;++i)
if (n-x>=5-i&&x>=i) find=find||dfs(x-i+5-i,dep+1);
return find;
}
LL ans;
int main()
{
freopen("xcoins.in","r",stdin);
freopen("xcoins.out","w",stdout);
scanf("%lld",&n);
ans=0;
if (n>30)
{
ans=(n-20)/5;
n=(n-20)%5+20;
}
{
MaxDep=-1;
for (;;)
{
++MaxDep;
if (dfs(n,0)) break;
}
printf("%lld\n",ans+MaxDep);
}
return 0;
}