hdu 4277 暴力+set

题意:

给n条边, 可以围成多少种不同的三角形

思路:

暴力枚举三角形的三条边分别由哪些边组成

hash三角形的三条边之后存到set中

最终答案是set的大小

code:

#include<cstdio>
#include<cstring>
#include<algorithm>
#include<set>
using namespace std;
const int maxn = 20;
typedef long long LL;

int a[maxn];
int n;
int sum;
set<long long> se;

void dfs(int x, int y, int cur){
    if(cur == n){
        int z = sum - x - y;
        if(x < y || y < z) return;
        if(x + y > z && x + z > y && y + z > x){
            se.insert(x*10000007LL + y*10007LL + z);
        }
        return;
    }
    dfs(x, y, cur+1);
    dfs(x+a[cur], y, cur+1);
    dfs(x, y+a[cur], cur+1);
}
int main(){
    int t;
    scanf("%d",&t);
    while(t--){
        scanf("%d",&n);
        sum = 0;
        for(int i = 0; i < n; i++){
            scanf("%d", &a[i]);
            sum += a[i];
        }
        se.clear();
        dfs(0, 0, 0);
        printf("%d\n", se.size());
    }
    return 0;
}


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值