码迷,mamicode.com
首页 > 其他好文 > 详细

【HDU-4277】USACO ORZ(暴搜)

时间:2014-09-25 16:11:59      阅读:153      评论:0      收藏:0      [点我收藏+]

标签:style   io   ar   for   sp   on   c   amp   ef   

直接dfs暴力,不需要减枝, 利用set进行判断重复,hash一下,转化成一个longlong的数保存就好了。

#include<cstdio>
#include<set>
#include<cstring>
#include<algorithm>
using namespace std;
#define MAXD 20 + 5
typedef long long LL;
int n;
LL array[MAXD];
set<LL>vis;
LL ans;
void dfs(LL a,LL b,LL c,int cur){
    if(cur == n){
        if(a >= b && b >= c){
            if(a + b > c && a + c > b && b + c > a && a && b && c){
                LL t = c * 100000001 + b * 10001 + a;
                if(!vis.count(t)){
                    ans ++ ;
                    vis.insert(t);
                }
            }
        }
        return ;
    }
    dfs(a + array[cur],b,c,cur + 1);
    dfs(a,b + array[cur],c,cur + 1);
    dfs(a,b,c + array[cur],cur + 1);
    return ;
}
int main(){
    int T;
    scanf("%d",&T);
    while(T--){
        scanf("%d",&n);
        vis.clear();
        for(int i = 0 ; i < n ; i++)
            scanf("%I64d",&array[i]);
        ans = 0;
        dfs(0,0,0,0);
        printf("%I64d\n",ans);
    }
    return 0;
}

【HDU-4277】USACO ORZ(暴搜)

标签:style   io   ar   for   sp   on   c   amp   ef   

原文地址:http://blog.csdn.net/u013451221/article/details/39549123

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!