POJ 2718 Smallest Difference

DFS嵌套DFS

//156K	47MS
#include <cstdio>
#include <cstring>
#include <iostream>
#include <cmath>
#include <algorithm> //不加此头文件min和abs在一起会出现编译错
using namespace std;

const int inf = 0x7fffffff;
int num[11];
bool usea[11], useb[11];
int cnt, cnta, cntb, val, ans;
char ch;

int pow(int a, int n){
    int res = 1;
    while(n){
        if(n&1) res *= a;
        a *= a;
        n >>= 1;
    }
    return res;
}

void DFS_B(int vals, int deep){
    if(deep > 0 && abs(val - vals * pow(10, (cntb-deep))) >= ans) return; //剪枝
    if(deep == cntb){
            ans = min(ans, abs(vals - val));
            return;
    }
    for(int i=0; i<cnt; i++)
	    if(!usea[i] && !useb[i]){
	    if(deep == 0&& num[i] == 0) continue;
	    useb[i]=1;
	    DFS_B(vals*10+num[i], deep+1);
	    useb[i]=0;
	}
}

void DFS_A(int vals,int deep){
    if(deep == cnta){
	val = vals;
	memset(useb, 0, sizeof(useb));
	DFS_B(0,0);
    }
    else{
    for(int i=0; i<cnt; i++)
	if(!usea[i]){
	    if(deep==0 && num[i]==0) continue;
	    usea[i]=1;
	    DFS_A(vals*10+num[i], deep+1);
	    usea[i]=0;
	}
	}
}

int main(){
    int T;
    while(scanf("%d",&T) != EOF){
    getchar();
	while(T--){
	    cnt=0;
	    while((ch=getchar()) != '\n'){
		      if(ch >= '0' && ch<='9')
		         num[cnt++] = ch-'0';
	    }
	    cnta = cnt>>1;
	    cntb = cnt-cnta;
	    ans = inf;
	    DFS_A(0,0);
	    if(ans==inf) printf("%d\n",val);
	    else printf("%d\n",ans);
	}
    }
    return 0;
}


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值