zoukankan      html  css  js  c++  java
  • 【搜索】POJ-2718 全排列+暴力

    一、题目

    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
    

    二、思路&心得

    • next_permutation()函数的用法:注意若要得到全排列,则数组应该为有序的
    • 利用dfs + 回溯,再借以辅助数据visit可以找出一组数据的多种组合

    三、代码

    
    #include<cstdio>
    #include<algorithm>
    #define MAX 99999
    using namespace std;
    
    int nums[11];
    int t, len;
    char ch;
    
    void solve() {
    	while (t --) {
    		len = 0;
    		while (1) {
    			scanf("%d%c", &nums[len ++], &ch);
    			if (ch == '
    ') break;
    		}
    		if (len == 2) {
    			printf("%d
    ", abs(nums[0] - nums[1]));
    			continue;
    		}
    		int num1, num2, ans = MAX;
    		int mid = len / 2;
    		do {
    			num1 = nums[0], num2 = nums[mid];
    			if (!num1 || !num2) continue;
    			for (int i = 1; i < mid; i ++) {
    				num1 = num1 * 10 + nums[i];
    			}
    			for (int i = mid + 1; i < len; i ++) {
    				num2 = num2 * 10 + nums[i];
    			}
    			if (abs(num1 - num2) < ans) ans = abs(num1 - num2);
    		} while (next_permutation(nums, nums + len));
    		printf("%d
    ", ans);		
    	}
    }
    
    int main() {
    	scanf("%d", &t);
    	solve();
    	return 0;
    } 
    
  • 相关阅读:
    OpenCV 环境搭建( Win7 32位 / VS2010 / OpenCV2.4.8 )
    OpenCV 简介
    计算机视觉简介
    使用 sigaction 函数实现可靠信号
    可靠信号机制
    信号机制的两个思考
    信号的接收和处理
    【angular5项目积累总结】列表多选样式框(1)
    数组相关方法积累(vueag等特别常用)
    Angular 4+ 修仙之路
  • 原文地址:https://www.cnblogs.com/CSLaker/p/7281194.html
Copyright © 2011-2022 走看看