-
Notifications
You must be signed in to change notification settings - Fork 0
/
1338 - Hidden Secret!.cpp
88 lines (81 loc) · 2.77 KB
/
1338 - Hidden Secret!.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
/// Coded by Dhiman Sarker Bappi (Dhimanda) - RMSTU
#include<bits/stdc++.h>
using namespace std;
#define F first
#define S second
#define pb push_back
#define popb pop_back
#define pf push_front
#define popf pop_front
#define lcm(a,b) (a*b)/gcd(a,b)
#define gcd(a,b) __gcd(a,b)
#define pi 2*acos(0)
#define elif else if
#define ll long long
#define nl '\n'
#define endl '\n'
#define fori(i,b,e) for(int (i)=(b); (i) <= (e); (i)++)
#define for0(i,n) for(int (i)=0; (i) < (n); (i)++)
#define sp fixed << setprecision
#define all(x) x.begin(),x.end()
#define power(n,p) pow_mod(n, p, (1LL<<62))
#define yes printf("Yes\n")
#define no printf("No\n")
// ===================== DEBUG ==========================
#ifdef dhimanpc
vector<string>vec_spltr(string s){s+=',';vector<string>res;while(!s.empty())
res.push_back(s.substr(0, s.find(','))),s=s.substr(s.find(',')+1);return res;}
void dbg_out(vector<string>__attribute__((unused))args,__attribute__((unused))int idx,
__attribute__((unused))int LINE_NUM){cerr<<endl;}template<typename Head,typename... Tail>
void dbg_out ( vector <string> args, int idx, int LINE_NUM, Head H, Tail... T)
{if(idx>0)cerr<<", ";else cerr << "Line(" << LINE_NUM << ") ";stringstream ss;ss<<H;
cerr<<args[idx]<<" = "<<ss.str();dbg_out(args,idx+1,LINE_NUM, T...);}
#define debug(...) dbg_out(vec_spltr(#__VA_ARGS__), 0, __LINE__, __VA_ARGS__)
#define in_file freopen("input.c", "r", stdin)
#define out_file freopen("output.c", "w", stdout)
#define fast 0
#else
#define debug(...) 0
#define in_file 0
#define out_file 0
#define fast ios_base :: sync_with_stdio(0), cin.tie(0), cout.tie(0)
#endif
// ===================== custom function ==========================
ll pow_mod(ll nn, ll pp, ll mm) { ll res = 1; while(pp > 0) { if(pp&1) res = (res * nn) % mm; pp = pp >> 1; nn = (nn * nn) % mm; } return res; }
void dhimanda();
// ===================== Main function ==========================
int main()
{
//in_file;
//out_file;
//fast;
int t=1;
scanf("%d" , &t);
cin.ignore();
fori(i,1,t){
printf("Case %d: ", i);
dhimanda();
}
return 0;
}
void dhimanda(){
string a,b;
getline(cin,a);
getline(cin,b);
string x="" , y = "" ;
for(int i=0 ; i < a.size() ; i++) {
if(a[i] == ' ') continue;
if(a[i] >= 97) a[i] -= 32;
x += a[i] ;
}
for(int i=0 ; i < b.size() ; i++) {
if(b[i] == ' ') continue;
if(b[i] >= 97) b[i] -= 32;
y += b[i] ;
}
sort(all(x)) ;
sort(all(y)) ;
if(x==y) yes ;
else no ;
}
// Contact : chessdhiman@gmail.com