hdu 5718 Oracle 高精度

來源:互聯網
上載者:User

標籤:

Oracle

Time Limit: 8000/4000 MS (Java/Others)    Memory Limit: 262144/262144 K (Java/Others)


Problem DescriptionThere 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`. 

 

InputThe first line of the input contains an integer T (1≤T≤10), which denotes the number of test cases.

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

 

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

 

Sample Input31122331 

 

Sample Output2235Uncertain HintIn 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<string>#include<queue>#include<algorithm>#include<stack>#include<cstring>#include<vector>#include<list>#include<set>#include<map>using namespace std;#define ll __int64#define mod 100000007#define esp 0.00000000001const int N=1e5+10,M=1e7+10,inf=1e9+10;char a[M];char b[M];char c[M];void add(char a[],char b[])//a=a+b{   int i,j,k,sum=0;   k=strlen(a)>strlen(b)?strlen(a):strlen(b);   a[k+1]=0;   for(i=strlen(a)-1,j=strlen(b)-1;i>=0||j>=0;i--,j--,k--)   {   if(i>=0) sum+=a[i]-‘0‘;  if(j>=0) sum+=b[j]-‘0‘;       a[k]=sum%10+‘0‘; sum/=10;   }   if(sum) a[0]=sum+‘0‘;         else strcpy(a,&a[1]);printf("%s\n",a);}int check(char *a){    int x=strlen(a);    if(x==0)    return 0;    for(int i=0;i<x;i++)    if(a[i]!=‘0‘)    return 1;    return 0;}int flag[100];int main(){    int x,y,z,i,t;    int T;    scanf("%d",&T);    while(T--)    {        memset(flag,0,sizeof(flag));        scanf("%s",a);        x=strlen(a);        for(i=0;i<x;i++)        flag[a[i]-‘0‘]++;        int ji=0;        int lu=0;        for(i=1;i<=9;i++)        if(flag[i])        {            c[lu++]=‘0‘+i;            flag[i]--;            break;        }        for(i=9;i>=0;i--)        {            while(flag[i]!=0)            {                b[ji++]=i+‘0‘;                flag[i]--;            }        }        b[ji]=‘\0‘;        c[lu]=‘\0‘;        if(check(b)&&check(c))        add(b,c);        else        printf("Uncertain\n");    }    return 0;}

 

hdu 5718 Oracle 高精度

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.