`
SunnyYoona
  • 浏览: 367907 次
社区版块
存档分类
最新评论

UVA之10361 - Automatic Poetry

 
阅读更多

Problem I

Automatic Poetry

Input:standard input

Output:standard output

Time Limit:2 seconds

Memory Limit:32 MB

“Oh God”, Lara Croft exclaims, “it’sone of these dumb riddles again!”

In Tomb Raider XIV, Lara is, as ever, gunning her way through ancient Egyptian pyramids, prehistoric caves and medival hallways. Now she is standing in front of some important Germanic looking doorway and has to solve a linguistic riddle to pass. As usual, the riddle is not very intellectually challenging.

This time, the riddle involves poems containing a “Schuttelreim”. An example of a Schuttelreim is the following short poem:

Ein Kindhaltseinen Schnabel nur,

wennes hangt an der Nabelschnur.

/*German contestants please forgive me. I had to modify something as they were not appearing correctly in plain text format*/

A Schuttelreim seems to be a typical German invention. The funny thing about this strange type of poetry is that if somebody gives you the first line and the beginning of the second one, you can complete the poem yourself. Well, even a computer can do that, and your task is to write a program which completes them automatically. This will help Lara concentrate on the “action” part of Tomb Raider and not on the “intellectual” part.

Input

The input will begin with a line containing a single number n. After this line follow n pairs of lines containing Schuttelreims. The first line of each pair will be of the form

s1<s2>s3<s4>s5

wherethe siare possibly empty, strings of lowercase characters or blanks. The second line will be a string of lowercase characters or blanks ending with three dots “...”. Lines willweat most 100 characters long.

Output

For each pair of Schuttelreim lines l1and l2you are to output two lines c1and c2in the following way: c1is the same as l1only that the bracket marks “<” and “>” are removed. Line c2is the same asl2,except that instead of the three dots the string s4s3s2s5should appear.

Sample Input

3

einkind haelt seinen <schn>abel <n>ur

wennes haengt an der ...

weilwir zu spaet zur <>oma <k>amen

verpasstenwir das ...

<d>u <b>ist

...

Sample Output

einkind haelt seinen schnabel nur

wennes haengt an der nabel schnur

weilwir zu spaet zur oma kamen

verpasstenwir das koma amen

dubist

budist


TUD Programming Contest



【题意】:

输入:

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

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

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

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

输出:

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

第一个字符串格式:s1s2s3s4s5

第二个字符串格式:ss4s3s2s5

【代码】:

  1. /*********************************
  2. *日期:2013-4-26
  3. *作者:SJF0115
  4. *题号:题目10361-AutomaticPoetry
  5. *来源:http://uva.onlinejudge.org/index.php?option=com_onlinejudge&Itemid=8&category=15&page=show_problem&problem=1302
  6. *结果:AC
  7. *来源:UVA
  8. *总结:
  9. **********************************/
  10. #include<stdio.h>
  11. #include<string.h>
  12. #defineN110
  13. intmain(){
  14. inti,j,Case,lena,lenb;
  15. chara[N],b[N],s[N],s1[N],s2[N],s3[N],s4[N],s5[N];
  16. //freopen("C:\\Users\\XIAOSI\\Desktop\\acm.txt","r",stdin);
  17. while(scanf("%d\n",&Case)!=EOF){
  18. while(Case--){
  19. gets(a);
  20. gets(b);
  21. lena=strlen(a);
  22. //第一个子串
  23. for(j=0,i=0;a[i]!='<';i++,j++){
  24. s1[j]=a[i];
  25. }
  26. s1[j]='\0';
  27. //printf("%s\n",s1);
  28. //第二个子串
  29. for(i=i+1,j=0;a[i]!='>';i++,j++){
  30. s2[j]=a[i];
  31. }
  32. s2[j]='\0';
  33. //printf("%s\n",s2);
  34. //第三个子串
  35. for(i=i+1,j=0;a[i]!='<';i++,j++){
  36. s3[j]=a[i];
  37. }
  38. s3[j]='\0';
  39. //printf("%s\n",s3);
  40. //第四个子串
  41. for(i=i+1,j=0;a[i]!='>';i++,j++){
  42. s4[j]=a[i];
  43. }
  44. s4[j]='\0';
  45. //printf("%s\n",s4);
  46. //第五个子串
  47. for(i=i+1,j=0;i<lena;i++,j++){
  48. s5[j]=a[i];
  49. }
  50. s5[j]='\0';
  51. //printf("%s\n",s5);
  52. //第二个字符串
  53. for(i=0,j=0;b[i]!='.';i++,j++){
  54. s[j]=b[i];
  55. }
  56. s[j]='\0';
  57. //printf("%s\n",s);
  58. //输出
  59. printf("%s%s%s%s%s\n",s1,s2,s3,s4,s5);
  60. printf("%s%s%s%s%s\n",s,s4,s3,s2,s5);
  61. }
  62. }
  63. return0;
  64. }


  1. #include<iostream>
  2. #include<string>
  3. usingnamespacestd;
  4. #defineMAXN102
  5. stringa1,a2;
  6. voidsolve()
  7. {
  8. intp1=a1.find('<',0);
  9. intp2=a1.find('>',0);
  10. intp3=a1.find('<',p2+1);
  11. intp4=a1.find('>',p2+1);
  12. strings1=a1.substr(0,p1);
  13. strings2=a1.substr(p1+1,p2-p1-1);
  14. strings3=a1.substr(p2+1,p3-p2-1);
  15. strings4=a1.substr(p3+1,p4-p3-1);
  16. strings5=a1.substr(p4+1);
  17. cout<<s1<<s2<<s3<<s4<<s5<<endl;
  18. a2.replace(a2.length()-3,3,s4+s3+s2+s5);
  19. cout<<a2<<endl;
  20. }
  21. intmain()
  22. {
  23. intt;cin>>t;
  24. cin.get();
  25. while(t--)
  26. {
  27. getline(cin,a1);
  28. getline(cin,a2);
  29. solve();
  30. }
  31. }
分享到:
评论

相关推荐

Global site tag (gtag.js) - Google Analytics