标签:des style color os strong width
表示刚刚做出来 就发现不能提交了 好悲催= =
伤心难过痛哭流涕%>_<%
Time Limit: 3000MS | Memory Limit: 65536K | |
Total Submissions: 31630 | Accepted: 13613 |
Description
Input
Output
Sample Input
dog ogday cat atcay pig igpay froot ootfray loops oopslay atcay ittenkay oopslay
Sample Output
cat eh loops
Hint
#include <iostream> #include <string> #include <map> #include <stdio.h> #include <cstring> using namespace std; int main() { map <string ,bool >appear; map <string ,string>printf; char s[40],sa[20],sb[20]; string f; string english; while (gets(s)) { if (s[0]=='\0') break; int len1; int len=strlen(s); for(len1=0;len1<len;len1++) if(s[len1]==' ') break; int i; for(i=0;i<len1;i++) sa[i]=s[i]; sa[len1]='\0'; int k=0; for(i=len1+1;i<len;i++) sb[k++]=s[i]; sb[k]='\0'; english=sa; f=sb; appear[f]=true; printf[f]=english; } string s1; while(cin>>s1) { if(appear[s1]==true) cout<<printf[s1]<<endl; else cout<<"eh"<<endl; } return 0; } /* dog ogday cat atcay pig igpay froot ootfray loops oopslay atcay ittenkay oopslay */
POJ 2503 Babelfish,布布扣,bubuko.com
标签:des style color os strong width
原文地址:http://blog.csdn.net/sunshumin/article/details/38046393