码迷,mamicode.com
首页 > 其他好文 > 详细

UVA 10361-Automatic Poetry(串)

时间:2014-11-25 14:30:33      阅读:205      评论:0      收藏:0      [点我收藏+]

标签:style   blog   http   io   ar   color   os   sp   for   

题意链接:传送门

题意转自:http://blog.csdn.net/sjf0115/article/details/8854304

题意:

输入:

输入N组测试用例,每组输入两个字符串。

第一个字符串格式:s1<s2>s3<s4>s5

s1,s2,s3,s3,s4,s5都可以为空或者不存在或者全是小写字符

第二个字符串格式:s ....

输出:

每组测试用例输出两个字符串。

第一个字符串格式:s1s2s3s4s5

第二个字符串格式:ss4s3s2s5

#include <algorithm>
#include <iostream>
#include <cstring>
#include <cstdlib>
#include <string>
#include <cctype>
#include <vector>
#include <cstdio>
#include <cmath>
#include <queue>
#include <stack>
#include <map>
#include <set>
#define maxn 360
#define _ll __int64
#define ll long long
#define INF 0x3f3f3f3f
#define Mod 1000000007
#define pp pair<int,int>
#define ull unsigned long long
#define max(x,y) ( ((x) > (y)) ? (x) : (y) )
#define min(x,y) ( ((x) > (y)) ? (y) : (x) )
using namespace std;
char s[6][120],t[120],sb[120];
void solve()
{
	int p=1,q=0,i=0;
	while(t[i]!='<')
	s[p][q++]=t[i++];s[p++][q]='\0';q=0;i++;
	while(t[i]!='>')
	s[p][q++]=t[i++];s[p++][q]='\0';q=0;i++;
	while(t[i]!='<')
	s[p][q++]=t[i++];s[p++][q]='\0';q=0;i++;
	while(t[i]!='>')
	s[p][q++]=t[i++];s[p++][q]='\0';q=0;i++;
	while(t[i]!='\0')
	s[p][q++]=t[i++];s[p++][q]='\0';q=0;
	for(i=1;i<=5;i++)
		printf("%s",s[i]);puts("");
	sb[strlen(sb)-3]='\0';
	printf("%s%s%s%s%s\n",sb,s[4],s[3],s[2],s[5]);
}
int main()
{
	int T;
	scanf("%d%*c",&T);
	while(T--)
	{
		gets(t);gets(sb);
		solve();
	}
	return 0;
}


UVA 10361-Automatic Poetry(串)

标签:style   blog   http   io   ar   color   os   sp   for   

原文地址:http://blog.csdn.net/qq_16255321/article/details/41480223

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!