UVa 10361 Automatic Poetry:字符串处理&两种读入方式2014-07-20 csdn博客 synapse710361 - Automatic Poetry
Time limit: 3.000 secondshttp://uva.onlinejudge.org/index.php?option=com_onlinejudge&Itemid=8&category=96&page=show_problem&problem=1302“Oh God”, Lara Croft exclaims, “it’s one 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 Kind halt seinen Schnabel nur,wenn es 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.
InputThe 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 forms1<s2>s3<s4>s5where the si are 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 will we at most 100 characters long.
Output
For each pair of Schuttelreim lines l1 and l2 you are to output two lines c1 and c2 in the following way: c1 is the same as l1 only that the bracket marks “<” and “>” are removed. Line c2 is the same as l2 , except that instead of the three dots the string s4s3s2s5 should appear.
Sample Input3ein kind haelt seinen <schn>abel <n>urwenn es haengt an der ...weil wir zu spaet zur <>oma <k>amenverpassten wir das ...<d>u <b>ist...
Sample Outputein kind haelt seinen schnabel nurwenn es haengt an der nabel schnurweil wir zu spaet zur oma kamenverpassten wir das koma amendu bistbu dist完整代码:(C风格)
/*0.019s*/#include<cstdio>#include<cstring>char s[7][100];inline void partgets(char *str, char ch){int i;char c;for (i = 0; (c = getchar()) != ch; ++i)str[i] = c;str[i] = " "; ///别忘了手动添加 }int main(void){int t;scanf("%d
", &t);while (t--){partgets(s[1], "<");partgets(s[2], ">");partgets(s[3], "<");partgets(s[4], ">");partgets(s[5], "
");gets(s[6]);s[6][strlen(s[6]) - 3] = " ";printf("%s%s%s%s%s
", s[1], s[2], s[3], s[4], s[5]);printf("%s%s%s%s%s
", s[6], s[4], s[3], s[2], s[5]);}return 0;}
C++风格:
/*0.016s*/#include<cstdio>#include<iostream>using namespace std;string s1, s2, s3, s4, s5, s6;int main(void){int t;scanf("%d
", &t);while (t--){getline(cin, s1, "<");getline(cin, s2, ">");getline(cin, s3, "<");getline(cin, s4, ">");getline(cin, s5);///getline(cin, s6);s6.erase(s6.end() - 3, s6.end()); ///去掉末尾"..."cout << s1 << s2 << s3 << s4 << s5 << endl;cout << s6 << s4 << s3 << s2 << s5 << endl;}return 0;}