Finals in arithmetic CodeForces - 625D(구성)
5690 단어 codeforces구조
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
#include
#include
#include
#include
#include
#include
#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'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<else
{
if(a[0])
cout<0];
for(int i=1;icout<return 0;
}
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
Codeforces Round #715 Div. 2C The Sports Festival: 구간 DP전형구간 DP의 초전형. 이하, 0-indexed. 입력을 정렬하여 어디서나 시작하고 최적으로 좌우로 계속 유지하면 좋다는 것을 알 수 있습니다. {2000})$의 주문이 된다. 우선, 입력을 소트하여 n개의 요소를 $...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.