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 寻梦的主要内容,如果未能解决你的问题,请参考以下文章
HDU4057 Rescue the Rabbit(AC自动机+状压DP)