记录编号 |
460306 |
评测结果 |
AAAAAAAAAA |
题目名称 |
[USACO Oct08] 奶牛的骰子 |
最终得分 |
100 |
用户昵称 |
JustWB |
是否通过 |
通过 |
代码语言 |
C++ |
运行时间 |
0.003 s |
提交时间 |
2017-10-16 20:26:11 |
内存使用 |
0.35 MiB |
显示代码纯文本
#include<cstdio>
#include<iostream>
using namespace std;
inline int get();
void dfs(int now,int tmp);
int s[4],ans;
int temp[10081];
int main()
{
freopen("bones.in","r",stdin);
freopen("bones.out","w",stdout);
s[1]=get(),s[2]=get(),s[3]=get();
dfs(1,0);
printf("%d\n",ans);
return 0;
}
void dfs(int now,int tmp)
{
if(now>3)
{
temp[tmp]++;
if(temp[tmp]>temp[ans])ans=tmp;
else if(temp[tmp]==temp[ans]&&tmp<ans)ans=tmp;
}
else
for(int i=1;i<=s[now];i++)dfs(now+1,tmp+i);
}
inline int get()
{
int t=0;char c=getchar(),j=1;
while(!isdigit(c))
if(c=='-')j=-1,c=getchar();
else c=getchar();
while(isdigit(c))
t=(t<<3)+(t<<1)+c-'0',
c=getchar();
return j*t;
}