[POJ](2718)Smallest Difference ---- 穷竭搜索

来源:互联网 发布:c语言repeat是什么意思 编辑:程序博客网 时间:2024/05/21 10:58

Description

Given a number of distinct decimal digits, you can form one integer by choosing a non-empty subset of these digits and writing them in some order. The remaining digits can be written down in some order to form a second integer. Unless the resulting integer is 0, the integer may not start with the digit 0.

For example, if you are given the digits 0, 1, 2, 4, 6 and 7, you can write the pair of integers 10 and 2467. Of course, there are many ways to form such pairs of integers: 210 and 764, 204 and 176, etc. The absolute value of the difference between the integers in the last pair is 28, and it turns out that no other pair formed by the rules above can achieve a smaller difference.

Input

The first line of input contains the number of cases to follow. For each case, there is one line of input containing at least two but no more than 10 decimal digits. (The decimal digits are 0, 1, …, 9.) No digit appears more than once in one line of the input. The digits will appear in increasing order, separated by exactly one blank space.

Output

For each test case, write on a single line the smallest absolute difference of two integers that can be written from the given digits as described by the rules above.

Sample Input

1
0 1 2 4 6 7

Sample Output

28

**解题思路:**n个数,若n为偶数,那么一定是两个n/2位的数作差得到最小值。若n为奇数,那么则可以看做一个n/2位的数和一个n/2+1的数作差得到最小值。那么可以继续用next_permutation()这个函数枚举所以可能。然后注意用到一个剪枝,就是题意所说的第一个数不为0的情况。

AC代码:

#include<iostream>#include<cstdio>#include<algorithm>#include<cmath>using namespace std;int main(){    int t;    int a[15];    cin>>t;    while(t--)    {        int n = 0;        char ch;        int ans = 0x3f3f3f;        while(~scanf("%d%c",&a[n++],&ch))            if(ch =='\n') break;        if(n == 2){//特殊情况处理            cout<<abs(a[1]-a[0])<<endl;            continue;        }        do{            if(a[0] == 0 || a[n/2] == 0) continue; //剪枝            int fre,pos;            fre = pos = 0;            for(int i=0;i<n/2;i++)                fre = fre*10+a[i];            for(int i=n/2;i<n;i++)                pos = pos*10+a[i];            int tmp = abs(pos-fre);            ans = min(ans,tmp);        }while(next_permutation(a,a+n));        cout<<ans<<endl;    }    return 0;}