HDU 5718 Oracle【大数相加】

来源:互联网 发布:淘宝模特拍摄布光 编辑:程序博客网 时间:2024/06/05 04:57

Oracle

Time Limit: 8000/4000 MS (Java/Others)    Memory Limit: 262144/262144 K (Java/Others)
Total Submission(s): 1049    Accepted Submission(s): 460


Problem Description
There is once a king and queen, rulers of an unnamed city, who have three daughters of conspicuous beauty.

The youngest and most beautiful is Psyche, whose admirers, neglecting the proper worship of the love goddess Venus, instead pray and make offerings to her. Her father, the king, is desperate to know about her destiny, so he comes to the Delphi Temple to ask for an oracle.

The oracle is an integer n without leading zeroes. 

To get the meaning, he needs to rearrange the digits and split the number into <b>two positive integers without leading zeroes</b>, and their sum should be as large as possible. 

Help him to work out the maximum sum. It might be impossible to do that. If so, print `Uncertain`.
 

Input
The first line of the input contains an integer T (1T10), which denotes the number of test cases.

For each test case, the single line contains an integer n (1n<1010000000).
 

Output
For each test case, print a positive integer or a string `Uncertain`.
 

Sample Input
31122331
 

Sample Output
2235Uncertain
Hint
In the first example, it is optimal to split $ 112 $ into $ 21 $ and $ 1 $, and their sum is $ 21 + 1 = 22 $.In the second example, it is optimal to split $ 233 $ into $ 2 $ and $ 33 $, and their sum is $ 2 + 33 = 35 $.In the third example, it is impossible to split single digit $ 1 $ into two parts.
#include<iostream>#include<cstdio>#include<cmath>#include<cstring>#include<climits>#include<string>#include<queue>#include<stack>#include<set>#include<map>#include<algorithm>using namespace std;#define rep(i,j,k)for(i=j;i<k;i++)#define per(i,j,k)for(i=j;i>k;i--)#define MS(x,y)memset(x,y,sizeof(x))typedef long long LL;const int INF=0x7ffffff;const int M=1e8+1;char s1[M],s2[M];int flag[11];int i,j,k,n,m;int mark;int main(){    int T;    scanf("%d",&T);    while(T--)    {        getchar();        scanf("%s",s1);        MS(flag,0);        int len=strlen(s1);        rep(i,0,len)flag[s1[i]-'0']++;        int sum=0,k;        rep(i,1,10)sum+=flag[i];        if(sum<2){            puts("Uncertain");continue;        }        rep(i,1,10)          if(flag[i]){            k=i;flag[i]--;break;          }          int t=0;         rep(i,0,10){            while(flag[i]){                if(i+k>=10){                   s2[t++]=char((i+k)%10+'0');                   k=1;                }                else s2[t++]=char(i+k+'0'),k=0;                flag[i]--;            }        }        if(k==1){                printf("1");            for(i=len-1;i>=0;i--)printf("%c",s2[i]);        }       else for(i=len-2;i>=0;i--)printf("%c",s2[i]);       printf("\n");    }    return 0;}
0 0
原创粉丝点击