记录编号 |
316666 |
评测结果 |
AAAAAAA |
题目名称 |
[USACO 2.3.3]零数列 |
最终得分 |
100 |
用户昵称 |
Hzoi_Go灬Fire |
是否通过 |
通过 |
代码语言 |
C++ |
运行时间 |
0.003 s |
提交时间 |
2016-10-07 06:21:26 |
内存使用 |
0.29 MiB |
显示代码纯文本
#include<cstdio>
#include<algorithm>
#include<cstring>
#include<cmath>
#include<cstdlib>
#define Begin freopen("zerosum.in","r",stdin);freopen("zerosum.out","w",stdout);
#define End fclose(stdin);fclose(stdout);
using namespace std;
const int maxn=1010;
int n;
bool vis[15][4];
void Init();
bool Judge(){
int now=0,mul=1,tot=0;
for(int i=1;i<=n;i++){
now=now*10+i;
if(!vis[i][2]){
tot+=mul*now;
now=0;
if(vis[i][0])mul=1;
if(vis[i][1])mul=-1;
}
}
tot+=now;
if(tot==0)return 1;
else return 0;
}
void Write(){
for(int i=1;i<=n;i++){
printf("%d",i);
if(vis[i][0])printf("+");
if(vis[i][1])printf("-");
if(vis[i][2])printf(" ");
}
puts("");
}
void Dfs(int step){
if(step==n-1){
if(Judge())Write();
return;
}
vis[step+1][2]=1;
Dfs(step+1);
vis[step+1][2]=0;
vis[step+1][0]=1;
Dfs(step+1);
vis[step+1][0]=0;
vis[step+1][1]=1;
Dfs(step+1);
vis[step+1][1]=0;
}
int main(){
Begin;
Init();
End;
// system("pause");
return 0;
}
void Init(){
scanf("%d",&n);
Dfs(0);
}