• 【搜索】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;
    } 
    
  • 相关阅读:
    JavaWeb 内存马一周目通关攻略
    Android应用攻与防
    JavaWeb 内存马二周目通关攻略
    Mysql 5.7 windows安装 zip安装
    [JavaScript] 单例模式
    [JavaScript] 策略模式
    Leecode刷题笔记
    Java面经
    一些开源项目在ARM上的移植
    ffmpeg和SDL的多媒体编程(二)输出到屏幕
  • 原文地址:https://www.cnblogs.com/CSLaker/p/7281194.html
Copyright © 2020-2023  润新知