Smallest Difference POJ - 2718

Smallest Difference POJ - 2718
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
题目本身不难,用stl里的next_permutation()枚举就行,关键在于输入,开始我用cin.getline()函数,很多次都wa了,不知道啥原因,最后看了别人的 输入用的getchar() 换了之后就ac了,,可怕,输入有时候也很麻烦,
`#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
using namespace std;
#define N 10003
#define PI 3.14159265358979323
#define INF 0x3f3f3f3f
#define MOD 100000007
#define ll long long
#define lson rt<<1,l,mid
#define rson rt<<1|1,mid+1,r
int n,a[12];
//template < class T> void read ( T &x ){ char c;int sign=1;x=0;while ( c=getchar(),(c>‘9’||c<‘0’)&&c!=’-’) ;if ( c==’-’ ){sign=-1;}else x=c-‘0’;while ( c=getchar(),c<=‘9’&&c>=‘0’ ){x=x10+c-‘0’;}x=xsign;}
int main ( )
{
ios::sync_with_stdio(false);
cin.tie(0);
cout.tie(0);
int i,j,k;
int mind,de;
char ch[4];

scanf("%d", &n);
getchar();

while ( n-- )
{
	char te[22];
	int ad1,ad2;
	k=0;
	mind=INF;
	
	memset ( a,0,sizeof(a));
	
	 char c;
    while((c = getchar()) != '\n')
        if(c != ' ')
            a[k++] = c - '0';

	for ( i=0;i<22 ;i++ )
	{
		//cout<<te[i];
		if ( te[i]>='0'&&te[i]<='9' )
		a[k++]=te[i]-'0';
	}

   
   if ( k==2 )
   mind=a[1]-a[0];
   else
   {
   	 	do{
   	
   			if ( a[0]==0 ) //首个数字不以0开头 
   			continue ;
   	
   			i=0;
   			ad1=0;
   			ad2=0;
   	
   			while ( i<(k/2)) // 求两个组成的数最小差,两个数的位数一定相同或者相差1,二分即可 
   			ad1=ad1*10+a[i++];
   	
   			if ( a[i]==0 )
   			continue ;
   	
   			while ( i<k )
   			ad2=ad2*10+a[i++];
   	
   			de=abs ( ad1-ad2);
   	
   			mind=min(mind,de);
   	
   			if ( mind==0 )
   			break;
   	
   		  }while ( next_permutation(a,a+k ));
   	
   }
	
	printf( "%d\n",mind);
} 

return 0;

}

`

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

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值