我希望你是我独家记忆

一段永远封存的记忆,随风而去
posts - 263, comments - 31, trackbacks - 0, articles - 3
   :: 首页 :: 新随笔 ::  :: 聚合  :: 管理

HLOJ_1126( string )

Posted on 2009-03-25 16:42 Hero 阅读(66) 评论(0)  编辑 收藏 引用 所属分类: 代码如诗--ACM
 1 //1126      Accepted     15    192    458     C++ 
 2 
 3 #include <iostream>
 4 #include <string>
 5 #include <algorithm>
 6 using namespace std ;
 7 
 8 int tnum ;
 9 string stra, strb ;
10 
11 int main()
12 {
13     while( cin >> tnum )
14     {
15         getchar() ;
16         while( tnum -- )
17         {
18             getline( cin, stra ) ; std::sort( stra.begin(), stra.end() ) ;
19             getline( cin, strb ) ; std::sort( strb.begin(), strb.end() ) ;
20 
21             if( stra == strb )
22                 cout << "Yes" << endl ;
23             else        
24                 cout << "No" << endl ;
25         }
26     }
27 
28     return 0 ;
29 }
30 

只有注册用户登录后才能发表评论。
网站导航: 博客园   IT新闻   BlogJava   知识库   博问   管理