-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathUpdates_Queries.cpp
97 lines (64 loc) · 1.5 KB
/
Updates_Queries.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
///link of problem : https://codeforces.com/contest/1986/problem/C
#include<bits/stdc++.h>
#include<iostream> ///* code by Ahmed Elnemr *///
using namespace std;
///template<typename type1,typename type2>
///#define b 10 --> const int b= 10;
#define int long long
#define ll long long
#define f first
#define sec second
#define endl "\n"
#define lp(n) for(ll i=0;i<n;i++)
#define lp2(n) for(ll j=0;j<n;j++)
#define sp(n) fixed<<setprecision(n)
#define iset set<int>
#define llset set<ll>
#define ivec vector<int>
#define llvec vector<ll>
#define iimap map<int,int>
#define chimap map<char,int>
#define chchmap map<char,char>
#define all(x) x.begin(),x.end()
#define yes cout<<"YES"<<endl
#define no cout<<"NO"<<endl
void fast_run()
{
ios_base::sync_with_stdio(false);
cin.tie(NULL);
cout.tie(NULL);
}
signed main() {
fast_run();
int t=1;
cin>>t;
while(t--) {
int n,m; cin>>n>>m;
string s,c,ss; cin>>s;
ivec arr(m);
iimap mp;
lp(m) {
cin>>arr[i];
arr[i]--;
mp[arr[i]]++;
}
sort(all(arr));
cin>>c;
sort(all(c));
int i=0,j=m-1,k=0;
while(k<m) {
if(mp[arr[k]]>1) {
s[arr[k]]=c[j];
j--;
mp[arr[k]]--;
}
else if (mp[arr[k]]==1) {
s[arr[k]]=c[i];
i++;
}
k++;
}
cout<<s<<endl;
}
return 0;
}