2013年8月10日
摘要: http://poj.org/problem?id=2503这个题一开始是想用字典树,发现太麻烦。。。。。 1 #include 2 #include 3 #include 4 #include 5 using namespace std; 6 int main () 7 { 8 map tra; 9 char s[100011], str[100011], s1[100011];10 while (gets(s)&&s[0])11 {12 sscanf(s,"%s %s",str,s1);//输入一个字符串,空格前的存到str里边,后边的存到s... 阅读全文
posted @ 2013-08-10 14:08 枫、 阅读(196) 评论(0) 推荐(0) 编辑