• POJ-2718 Smallest Difference(枚举)


    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.

    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;
    }
  • 相关阅读:
    1.33 (累积互素数)
    1.33 (过滤累积和 求区间内所有素数之和)
    1.32 (更高层次的抽象! 乘法与加法本来就是一回事)
    1.31 (另一种求圆周率的算法)
    1.30 (递归的sum变迭代)
    习题1.29 (积分方法的优化---simpson规则)
    1.3.1 (对过程的抽象)
    SICP习题 1.23(素数查找的去偶数优化)
    SICP习题 1.22(素数)
    pom.xml
  • 原文地址:https://www.cnblogs.com/Pretty9/p/7454975.html
Copyright © 2020-2023  润新知