XDOJ_1037_贪心

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了XDOJ_1037_贪心相关的知识,希望对你有一定的参考价值。

http://acm.xidian.edu.cn/problem.php?id=1037

 

构造逆向逆数b,然后找a的后缀和b的前缀相同的部分。

 

#include<iostream>
#include<cstring>
#include<cstdio>
#include<algorithm>
using namespace std;

int a[55],b[55];
char s[55];

int main()
{
    int T;
    scanf("%d",&T);
    while(T--)
    {
        scanf("%s",s);
        int n = strlen(s);
        for(int i = 1;i <= n;i++)
        {
            a[i] = s[i-1]-0;
            b[n-i+1] = a[i]^1;
        }
        int pos;
        for(pos = 1;pos <= n;pos++)
        {
            int flag = 1;
            for(int i = pos,j = 1;i <= n;i++,j++)
            {
                if(a[i] != b[j])
                {
                    flag = 0;
                    break;
                }
            }
            if(flag)   break;
        }
        for(int i = 1;i < pos;i++)  printf("%d",a[i]);
        for(int i = 1;i <= n;i++)   printf("%d",b[i]);
        printf("\n");
    }
    return 0;
}

 

以上是关于XDOJ_1037_贪心的主要内容,如果未能解决你的问题,请参考以下文章

XDOJ_1091_贪心

XDOJ_1054_贪心

XDOJ_1147_贪心

XDOJ_1179_贪心

XDOJ_1015_贪心

CodeForces 1037B Reach Median_贪心