-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathforbidden_subsequence.cpp
44 lines (44 loc) · 1.1 KB
/
forbidden_subsequence.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
#include <bits/stdc++.h>
using namespace std;
int main()
{
int cases;
cin>>cases;
for(int i=0; i<cases; i++)
{
string a,b;
cin>>a>>b;
sort(a.begin(), a.end());
if(b!="abc")
{
cout<<a<<endl;
continue;
}
else
{
int aa=0,bb=0, cc=0;
int diff = a.length();
for(int j=0; j<a.length(); j++)
{
if(a[j]!='a' && a[j] != 'b' && a[j] != 'c')
{
diff = j;
break;
}
else if(a[j] == 'a') aa++;
else if(a[j] == 'b') bb++;
else if(a[j] == 'c') cc++;
}
// cout<<aa<<bb<<cc<<endl;
string ans="";
for(int j=0; j<aa; j++) ans+='a';
for(int j=0; j<cc; j++) ans+='c';
for(int j=0; j<bb; j++) ans+='b';
// cout<<ans<<" | ";
ans+=a.substr(diff);
if(aa>0 && bb>0 && cc>0) cout<<ans<<endl;
else cout<<a<<endl;
continue;
}
}
}