-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathA_Forbidden_Subsequence.cpp
123 lines (83 loc) · 2.11 KB
/
A_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
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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
#include <bits/stdc++.h>
using namespace std;
#define int long long
const long long MOD = 1e9 + 7;
const long long INF = numeric_limits<long long>::max();
#define t_case int ttt {} ; cin >> ttt ; while(ttt--)
#define FAST ios_base::sync_with_stdio(0); cin.tie(NULL); cout.tie(NULL);
#define all(x) (x).begin() , (x).end()
bool is(string s , string t)
{
if(t.size()>s.size()) return 0 ;
char p = t[0] ;
int j = 0 ;
int match = 0;
for(int i = 0 ; i < s.size() ; i++)
{
if(p == s[i])
{
match++ ;
j++ ;
if(j>=t.size()){break;}
p = t[j] ;
}
}
return match == t.size() ;
}
signed main()
{
FAST
t_case
{
string s , t ;
cin >> s >> t ;
string ans ;
sort(all(s)) ;
string tt = t ;
sort(all(tt)) ;
if(s.size()<3){ cout << s << "\n" ; continue ; }
bool isA {0}, isB {0}, isC {0} ;
for(auto &ch : s)
{
if(ch == 'a') isA = 1 ;
if(ch == 'b') isB = 1 ;
if(ch == 'c') isC = 1 ;
}
if( (!isA or !isB or !isC) )
{
cout << s << "\n" ;
continue ;
}
if(tt==t){
next_permutation(all(tt)) ;
}
string a , b , c ;
for(char &x : s)
{
if(x == 'a') a.push_back(x) ;
if(x == 'b') b.push_back(x) ;
if( x== 'c' ) c.push_back(x) ;
}
for(char &x : tt)
{
if(x=='a')
{
for(auto &ch : a ) cout << ch ;
}
else if(x=='b')
{
for(auto &ch : b ) cout << ch ;
}
else if(x=='c')
{
for(auto &ch : c ) cout << ch ;
}
}
for(auto &m : s)
{
if(m == 'a' or m == 'b' or m == 'c') continue ;
cout << m ;
}
cout << "\n" ;
}
}