Smallest Difference
Time Limit: 1000MS | Memory Limit: 65536K | |
Total Submissions: 12611 | Accepted: 3419 |
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.
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
提议就是给出1个长度不超过10的数字序列,问用这些数字组成两个数字之差最小是多少?不含有前导0,不难想到一定要分成一半或者一半加一才能满足条件,所以直接枚举全排列就行了,一开始用的string做的结果超时了贼尴尬。。。
//#include <bits/stdc++.h> #include<algorithm> #include<iostream> #include<cstdio> #define _ ios_base::sync_with_stdio(0);cin.tie(0); using namespace std; const int INF = 0x3f3f3f3f; const int N = 10 + 5; int a[N]; int Solve_question(int len){ while(!a[0]) next_permutation(a, a + len); int mid = len / 2; int x, y, Min = INF; do{ if(a[mid]){ x = y = 0; for(int i = 0; i < mid; i++) x = x * 10 + a[i]; for(int i = mid; i < len; i++) y = y * 10 + a[i]; Min = min(Min, abs(x - y)); } }while(next_permutation(a, a + len)); return Min; } int main(){ int T; scanf("%d", &T); getchar(); while(T --){ char c; int len = 0; while((c = getchar()) != ' ') if(isdigit(c)) a[len++] = c - '0'; printf("%d ", len > 2? Solve_question( len ):abs(a[0] - a[1])); } return 0; }