Playrix Codescapes Cup (Codeforces Round #413, rated, Div. 1 + Div. 2) B
A new pack of n t-shirts came to a shop. Each of the t-shirts is characterized by three integers pi, ai and bi, where pi is the price of the i-th t-shirt, ai is front color of the i-th t-shirt and bi is back color of the i-th t-shirt. All values pi are distinct, and values ai and bi are integers from 1 to 3.
m buyers will come to the shop. Each of them wants to buy exactly one t-shirt. For the j-th buyer we know his favorite color cj.
A buyer agrees to buy a t-shirt, if at least one side (front or back) is painted in his favorite color. Among all t-shirts that have colors acceptable to this buyer he will choose the cheapest one. If there are no such t-shirts, the buyer won't buy anything. Assume that the buyers come one by one, and each buyer is served only after the previous one is served.
You are to compute the prices each buyer will pay for t-shirts.
The first line contains single integer n (1 ≤ n ≤ 200 000) — the number of t-shirts.
The following line contains sequence of integers p1, p2, ..., pn (1 ≤ pi ≤ 1 000 000 000), where pi equals to the price of the i-th t-shirt.
The following line contains sequence of integers a1, a2, ..., an (1 ≤ ai ≤ 3), where ai equals to the front color of the i-th t-shirt.
The following line contains sequence of integers b1, b2, ..., bn (1 ≤ bi ≤ 3), where bi equals to the back color of the i-th t-shirt.
The next line contains single integer m (1 ≤ m ≤ 200 000) — the number of buyers.
The following line contains sequence c1, c2, ..., cm (1 ≤ cj ≤ 3), where cj equals to the favorite color of the j-th buyer. The buyers will come to the shop in the order they are given in the input. Each buyer is served only after the previous one is served.
Print to the first line m integers — the j-th integer should be equal to the price of the t-shirt which the j-th buyer will buy. If the j-th buyer won't buy anything, print -1.
5 300 200 400 500 911 1 2 1 2 3 2 1 3 2 1 6 2 3 1 2 1 1
200 400 300 500 911 -1
2 1000000000 1 1 1 1 2 2 2 1
1 1000000000
#include<bits/stdc++.h>
using namespace std;
#define maxn 200000+100
int a[maxn];
set<int>q[4];
set<int>::iterator t;
int main(){
int n;
cin>>n;
for(int j=0;j<n;j++){
cin>>a[j];
}
for(int j=0;j<n;j++){
int x;
cin>>x;
q[x].insert(a[j]);
}
for(int j=0;j<n;j++){
int x;
cin>>x;
q[x].insert(a[j]);
}
int m;
cin>>m;
for(int j=0;j<m;j++){
int x;
cin>>x;
int y;
t=q[x].begin();
//cout<<*t<<endl;
if(!q[x].empty()){
y=*t;
cout<<y<<" ";
}
else{
cout<<"-1"<<" ";
}
q[1].erase(y);
q[2].erase(y);
q[3].erase(y);
}
return 0;
}
相關文章
- Educational Codeforces Round 172 (Rated for Div. 2)
- Educational Codeforces Round 170 (Rated for Div. 2)
- Educational Codeforces Round 168 (Rated for Div. 2)
- Educational Codeforces Round 163 (Rated for Div. 2)
- Educational Codeforces Round 154 (Rated for Div. 2)
- Educational Codeforces Round 93 (Rated for Div. 2)
- Educational Codeforces Round 37 (Rated for Div. 2)
- Educational Codeforces Round 100 (Rated for Div. 2)
- Codeforces Round #844 (Div. 1 + Div. 2, based on VK Cup 2022 - Elimination Round) A-D
- Educational Codeforces Round 170 (Rated for Div. 2) ABCD
- Educational Codeforces Round 168 (Rated for Div. 2) A - E
- 【CodeForces訓練記錄】CodeTON Round 9 (Div. 1 + Div. 2, Rated, Prizes!)
- Codeforces Round 947 (Div. 1 + Div. 2)
- Educational Codeforces Round 171 (Rated for Div. 2) 題解
- vp Educational Codeforces Round 168 (Rated for Div. 2) A - E
- Educational Codeforces Round 170 (Rated for Div. 2) A-D
- Educational Codeforces Round 168 (Rated for Div. 2) 題解
- Educational Codeforces Round 142 (Rated for Div. 2) A-D
- Educational Codeforces Round 143 (Rated for Div. 2) A-E
- Educational Codeforces Round 93 (Rated for Div. 2)題解
- CodeTON Round 9 (Div. 1 + Div. 2, Rated, Prizes!](A~D)
- 【Codeforces Round #499 (Div. 1) B】Rocket
- Educational Codeforces Round 158 (Rated for Div. 2) - VP記錄
- Educational Codeforces Round 159 (Rated for Div. 2) - VP記錄
- Educational Codeforces Round 162 (Rated for Div. 2) - VP記錄
- Educational Codeforces Round 163 (Rated for Div. 2) - VP記錄
- Educational Codeforces Round 166 (Rated for Div. 2) - VP記錄
- 【CodeForces訓練記錄】Educational Codeforces Round 171 (Rated for Div. 2)
- CodeTON Round 9 (Div. 1 + Div. 2, Rated, Prizes!)(A~C2)
- Codeforces Round 959 sponsored by NEAR (Div. 1 + Div. 2)
- Codeforces Round #491 (Div. 2) B. Getting an A
- Codeforces Round #681 (Div. 2, based on VK Cup 2019-2020 - Final) (A B C D)
- Codeforces Round 977 (Div. 2)(B-C2)
- Educational Codeforces Round 95 (Rated for Div. 2) G. Three Occurrences
- Educational Codeforces Round 167 (Rated for Div. 2) D(dp,貪心)
- Educational Codeforces Round 163 (Rated for Div. 2) 補題記錄(A~A)
- Educational Codeforces Round 99 (Rated for Div. 2)D. Sequence and Swaps
- Educational Codeforces Round 172 (Rated for Div. 2)題解記錄(A~D)
- [CF1954] Educational Codeforces Round 164 (Rated for Div. 2) 題解