Finals in arithmetic CodeForces - 625D (构造)

Vitya is studying in the third grade. During the last math lesson all the pupils wrote on arithmetic quiz. Vitya is a clever boy, so he managed to finish all the tasks pretty fast and Oksana Fillipovna gave him a new one, that is much harder.

Let’s denote a flip operation of an integer as follows: number is considered in decimal notation and then reverted. If there are any leading zeroes afterwards, they are thrown away. For example, if we flip 123 the result is the integer 321, but flipping 130 we obtain 31, and by flipping 31 we come to 13.

Oksana Fillipovna picked some number a without leading zeroes, and flipped it to get number ar. Then she summed a and ar, and told Vitya the resulting value n. His goal is to find any valid a.

As Oksana Fillipovna picked some small integers as a and ar, Vitya managed to find the answer pretty fast and became interested in finding some general algorithm to deal with this problem. Now, he wants you to write the program that for given n finds any a without leading zeroes, such that a + ar = n or determine that such a doesn’t exist.

Input
The first line of the input contains a single integer n (1 ≤ n ≤ 10100 000).

Output
If there is no such positive integer a without leading zeroes that a + ar = n then print 0. Otherwise, print any valid a. If there are many possible answers, you are allowed to pick any.

Example
Input
4
Output
2
Input
11
Output
10
Input
5
Output
0
Input
33
Output
21

思路就是构造,容易发现假如没有进位的产生,那么,头尾对称,是个回文字序列,关键是有进位,所以需要处理进位的问题, 还有一个坑点就是最高有进位的问题。

#include<iostream>
#include<cstdio>
#include<stack>
#include<algorithm>
#include<queue>
#include<cstring>
#include<cmath>
#define maxx 100005
using namespace std;
char s[maxx];
int a[maxx];
int main()
{
    scanf("%s",s);
    int len=strlen(s);
    for(int i=0;i<len;i++)
        a[i]=s[i]-'0';
    int l=0,r=len-1;
    if(a[l]!=a[r])
    {
        a[l]--;
        a[l+1]+=10;
        if(!a[l])
            l++;
    }
    while(l<=r)
    {
        if(a[l]-a[r]>=10)
        {
            a[r]+=10;
            a[r-1]--;
        }
        if(a[l]-a[r]==1)
        {
            a[l]--;
            a[l+1]+=10;
        }
        if(a[l]!=a[r]||a[l]>18||a[l]<0)//因为存在--和+10的操作,容易出现超出范围的不合法情况
            break;
        if(l==r)//中间位置必须为偶数
        {
            if(a[l]%2)
                break;
            a[l]/=2;
        }
        else
        {
            if(a[l]<10)
            {
                if(l==0)//最高为特判不能为0
                {
                    a[l]=1;
                    a[r]-=1;
                    if(a[r]<0)
                        break;
                }
                else
                    a[r]=0;

            }
            else
            {
                a[l]-=9;
                a[r]=9;
            }
        }
        l++,r--;
    }
    if(l<=r)
        cout<<0<<endl;
    else
    {
        if(a[0])
            cout<<a[0];
        for(int i=1;i<len;i++)
            cout<<a[i];
    }
    return 0;
}
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值