Permutations

C - Permutations
Time Limit:1000MS     Memory Limit:262144KB     64bit IO Format:%I64d & %I64u

Description

You are given nk-digit integers. You have to rearrange the digits in the integers so that the difference between the largest and the smallest number was minimum. Digits should be rearranged by the same rule in all integers.

Input

The first line contains integers n and k — the number and digit capacity of numbers correspondingly (1 ≤ n, k ≤ 8). Next n lines contain k-digit positive integers. Leading zeroes are allowed both in the initial integers and the integers resulting from the rearranging of digits.

Output

Print a single number: the minimally possible difference between the largest and the smallest number after the digits are rearranged in all integers by the same rule.

Sample Input

Input
6 4
5237
2753
7523
5723
5327
2537
Output
2700
Input
3 3
010
909
012
Output
3
Input
7 5
50808
36603
37198
44911
29994
42543
50156
Output
20522

Hint

In the first sample, if we rearrange the digits in numbers as (3,1,4,2), then the 2-nd and the 4-th numbers will equal 5237 and 2537 correspondingly (they will be maximum and minimum for such order of digits).

In the second sample, if we swap the second digits and the first ones, we get integers 100, 99 and 102.


直接暴力列举不会超时的

 


#include <iostream>
#include <string>
#include <algorithm>
#include <cstring>

using namespace std;

string str[10];

int main()
{
	int n,dig;
	cin >> n >> dig;
	
	for(int i=0; i < n; ++i)
		cin >> str[i];
	
	int arr[10];
	int ar[10];
	for(int i=0 ; i < dig; ++i)
		arr[i]=i;
		
	
	int min=1000000000;
	do{
		memset(ar,0,sizeof(ar));
		for(int i=0; i < n; ++i){
			for(int j=0; j < dig; ++j)
				ar[i]=ar[i]*10+(str[i][arr[j]]-'0');
		}
		sort(ar,ar+n);
		min=(ar[n-1]-ar[0]<min)?ar[n-1]-ar[0]:min;
		
	}while(next_permutation(arr,arr+dig));
	cout << min << endl;
}


  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值