-
Notifications
You must be signed in to change notification settings - Fork 30
/
Copy pathForbidden Subsequence.cpp
95 lines (74 loc) · 3.13 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
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
/*
Solution by Rahul Surana
***********************************************************
You are given strings S and T, consisting of lowercase English letters. It is guaranteed that T is a permutation of the string abc.
Find string S′, the lexicographically smallest permutation of S such that T is not a subsequence of S′.
String a is a permutation of string b if the number of occurrences of each distinct character is the same in both strings.
A string a is a subsequence of a string b if a can be obtained from b by deletion of several (possibly, zero or all) elements.
A string a is lexicographically smaller than a string b if and only if one of the following holds:
a is a prefix of b, but a≠b;
in the first position where a and b differ, the string a has a letter that appears earlier in the alphabet than the corresponding letter in b.
Input
Each test contains multiple test cases. The first line contains a single integer t (1≤t≤1000) — the number of test cases. Description of the test cases follows.
The first line of each test case contains a string S (1≤|S|≤100), consisting of lowercase English letters.
The second line of each test case contains a string T that is a permutation of the string abc. (Hence, |T|=3).
Note that there is no limit on the sum of |S| across all test cases.
Output
For each test case, output a single string S′, the lexicographically smallest permutation of S such that T is not a subsequence of S′.
***********************************************************
*/
#include <bits/stdc++.h>
#define ll long long
#define vl vector<ll>
#define vi vector<int>
#define pi pair<int,int>
#define pl pair<ll,ll>
#define all(a) a.begin(),a.end()
#define mem(a,x) memset(a,x,sizeof(a))
#define pb push_back
#define mp make_pair
#define F first
#define S second
#define FOR(i,a) for(int i = 0; i < a; i++)
#define trace(x) cerr<<#x<<" : "<<x<<endl;
#define trace2(x,y) cerr<<#x<<" : "<<x<<" | "<<#y<<" : "<<y<<endl;
#define trace3(x,y,z) cerr<<#x<<" : "<<x<<" | "<<#y<<" : "<<y<<" | "<<#z<<" : "<<z<<endl;
#define fast_io std::ios::sync_with_stdio(false),cin.tie(NULL),cout.tie(NULL)
using namespace std;
int ar[27];
map<int,int> m;
// vector<vector<int>> dp;
// int ans = 0;
int main()
{
fast_io;
int t;
cin >> t;
while(t--) {
string s,t;
cin >> s;
cin >> t;
FOR(i,27) ar[i] = 0;
FOR(i,s.length()) ar[s[i]-'a']++;
string ans = "";
if(t == "abc" && ar[0] > 0){
while(ar[0] > 0) { ans += 'a'; ar[0]--; }
while(ar[2] > 0) { ans += 'c'; ar[2]--; }
FOR(i,26){
while(ar[i] > 0){
ans += i +'a';
ar[i]--;
}
}
}
else {
FOR(i,26){
while(ar[i] > 0){
ans += i +'a';
ar[i]--;
}
}
}
cout << ans <<"\n";
}
}