-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCF_1481C.cpp
88 lines (83 loc) · 1.77 KB
/
CF_1481C.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
#include <iostream>
#include <string>
#include <algorithm>
#include <math.h>
#include <vector>
#include <queue>
#include <stack>
#include <set>
#include <map>
#include <list>
#define INF INT_MAX
#define ll long long int
#define ull unsigned long long int
#define ld long double
#define MOD 1000000007
using namespace std;
int main() {
int T;
cin >> T;
for (int t = 0; t < T; t++) {
int N, M;
cin >> N >> M;
vector<int> a(N);
vector<int> b(N);
vector<int> c(M);
for (int i = 0; i < N; i++) {
cin >> a[i];
}
for (int i = 0; i < N; i++) {
cin >> b[i];
}
int needPaintCnt = 0;
map<int, int> stayPaints;
map<int, queue<int>> needPaint;
for (int i = 0; i < N; i++) {
if (a[i] != b[i]) {
needPaint[b[i]].push(i);
needPaintCnt++;
}
else {
stayPaints.insert({ a[i], i });
}
}
for (int i = 0; i < M; i++) {
cin >> c[i];
}
int wrongPaintCnt = 0;
vector<int> ans;
for (int i = 0; i < c.size(); i++) {
if (needPaint.find(c[i]) == needPaint.end()
|| needPaint[c[i]].size() == 0) {
if (stayPaints.find(c[i]) == stayPaints.end())
wrongPaintCnt++;
else {
for (int j = 0; j < wrongPaintCnt + 1; j++) {
ans.push_back(stayPaints[c[i]]);
}
wrongPaintCnt = 0;
}
}
else {
int idx = needPaint[c[i]].front();
needPaint[c[i]].pop();
stayPaints.insert({ c[i], idx });
for (int i = 0; i < wrongPaintCnt; i++) {
ans.push_back(idx);
}
ans.push_back(idx);
needPaintCnt--;
wrongPaintCnt = 0;
}
}
if (wrongPaintCnt > 0 || needPaintCnt > 0) {
cout << "NO" << endl;
}
else {
cout << "YES" << endl;
for (auto num : ans) {
cout << num + 1 << " ";
}cout << endl;
}
}
}