HDU2567 寻梦

Posted ac-ac

tags:

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

思路:输出第一个字符串的一半,在输出整个第二个字符串,最后输出第一个字符串剩余的。

#include<cmath>
#include<cstdio>
#include<cstring>
#include<iostream>
#include<algorithm>
using namespace std;
int main(void)
{
    int t;
    scanf("%d",&t);
    while(t--)
    {
        char s1[100];
        char s2[100];
        scanf("%s%s",s1,s2);
        int len = strlen(s1);
        for(int i = 0; i < len/2; i++)
            printf("%c",s1[i]);
        printf("%s",s2);
        for(int i = len/2; i < len; i++)
            printf("%c",s1[i]);
        printf("
");
        
    }
    return 0;
}

 

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

云享·人物丨造梦探梦筑梦,三位开发者在华为云上的寻梦之旅

AT2567 RGB Sequence dp

splay tree旋转操作 hdu 1890

HDU4057 Rescue the Rabbit(AC自动机+状压DP)

HDU3247 Resource Archiver(AC自动机+BFS+DP)

HDU 5251 矩形面积(二维凸包旋转卡壳最小矩形覆盖问题) --2015百度之星题目