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