Playrix Codescapes Cup (Codeforces Round #413, rated, Div. 1 + Div. 2)B. T-shirt buying(想法题)...

本文介绍了一种通过set数据结构解决T恤选购问题的方法。面对大量具有不同颜色和价格的T恤,以及顾客的不同需求,文章提供了一种有效算法来确保每位顾客能够购买到最便宜且颜色满足要求的T恤。

传送门

Description

A new pack of n t-shirts came to a shop. Each of the t-shirts is characterized by three integers piai 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.

Input

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.

Output

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.

Sample Input

5
300 200 400 500 911
1 2 1 2 3
2 1 3 2 1
6
2 3 1 2 1 1

2
1000000000 1
1 1
1 2
2
2 1
 

Sample Output

200 400 300 500 911 -1 
 
  

1 1000000000

思路

题意:

有n件T-shirt,每件正反都有颜色,有m个顾客,希望买到的T-shirt至少有一面的颜色是自己喜欢的颜色,并且价格最低,依次输出m个顾客买到的T-shirt的号数,没有则输出-1.

题解:

 set维护颜色与价格的组合值。

 

#include<bits/stdc++.h>
using namespace std;
const int maxn = 200005;
int p[maxn],a[maxn],b[maxn];
bool vis[maxn];
set<pair<int,int> >s[5];

int main()
{
	int n,m,t;
	scanf("%d",&n);
	for (int i = 0;i < n;i++)	scanf("%d",&p[i]);
	for (int i = 0;i < n;i++)	scanf("%d",&a[i]);
	for (int i = 0;i < n;i++)	scanf("%d",&b[i]);
	for (int i = 0;i < n;i++)
	{
		s[a[i]].insert(make_pair(p[i],i));
		s[b[i]].insert(make_pair(p[i],i));
		vis[i] = true;
	}
	scanf("%d",&m);
	while (m--)
	{
		int ans = -1;
		scanf("%d",&t);
		while (!s[t].empty())
		{
			int pos = (*(s[t].begin())).second;
			s[t].erase(s[t].begin());
			if (!vis[pos])	continue;
			ans = p[pos];
			vis[pos] = false;
			break;
		}
		printf("%d ",ans);
	}
	puts(" ");
	return 0;
}

  

转载于:https://www.cnblogs.com/ZhaoxiCheung/p/6913181.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值