博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Codeforces Round #413 B. T-shirt buying
阅读量:5172 次
发布时间:2019-06-13

本文共 3715 字,大约阅读时间需要 12 分钟。

B. T-shirt buying
time limit per test  
3 seconds
memory limit per test  
256 megabytes
 

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.

 
input
5 300 200 400 500 911 1 2 1 2 3 2 1 3 2 1 6 2 3 1 2 1 1
output
200 400 300 500 911 -1
input
2 1000000000 1 1 1 1 2 2 2 1
output
1 1000000000 题目大意:      在一个服装店里,有n件T-shirt待售,给定他们的价格 以及每件衣服前面的颜色 和后面的颜色(只可能有三种颜色1/2/3)      现在有m名顾客轮流进入商店购买衣服,每个人都有自己喜欢的颜色(他们都希望买到自己喜欢的颜色的衣服 并且花费要尽可能的少)      输出每一名顾客的最少花费  如果找不到自己喜欢的衣服,他将不会购买任何东西(输出-1)      顾客一个一个的轮流进入服装店,服务员每次只会服务当前的顾客 解题思路:      刚开始写的时候没有考虑到n的范围,直接将价格存入数组然后sort排序之后暴力查找 果断TLE      之后又用vector(容器)优化了一丢丢,结果还是TLE      最后看了学长的代码发现他用了一个神奇的东西(STL里的set) 用它优化之后果断A了      利用set将各种颜色的衣服分类存入一起(它神奇的地方在于 再存的过程中能够自动的按照从小到大排序)      关于 set的具体用法请看这里 : AC代码:
1 #include 
2 #include
3 #include
4 #include
5 #include
6 #include
7 8 using namespace std; 9 10 int main()11 {12 set
vec[4];13 set
:: iterator it;14 int n,m,a,b,c,i;15 int p[200010];16 while (~scanf("%d",&n))17 {18 for (i = 0; i < n; i ++)19 scanf("%d",&p[i]);20 for (i = 0; i < n; i ++){21 scanf("%d",&a);22 vec[a].insert(p[i]); // 将a颜色的T-shirt价格存到一起23 }24 for (i = 0; i < n; i ++){25 scanf("%d",&b); // 将b颜色的T-shirt价格存到一起26 vec[b].insert(p[i]);27 }28 29 scanf("%d",&m);30 while (m --)31 {32 scanf("%d",&c);33 if (vec[c].size() == 0) // c颜色的T-shirt已经卖完了34 printf("-1 ");35 else36 {37 it = vec[c].begin();38 int k = *it;39 printf("%d ",k);40 41 it = vec[1].find(k); // 将已经卖掉T-shirt清除42 if (it != vec[1].end())43 vec[1].erase(it);44 it = vec[2].find(k);45 if (it != vec[2].end())46 vec[2].erase(it);47 it = vec[3].find(k);48 if (it != vec[3].end())49 vec[3].erase(it);50 }51 }52 printf("\n");53 }54 return 0;55 }
欢迎各位大佬指教!!!

转载于:https://www.cnblogs.com/yoke/p/6869128.html

你可能感兴趣的文章
STL中的set使用方法详细!!!!
查看>>
sealed关键字的作用
查看>>
Android系统Surface机制的SurfaceFlinger服务简要介绍和学习计划
查看>>
HDU - 4472 Count
查看>>
搭建测试环境
查看>>
调用链监控 CAT 之 入门
查看>>
flexbox属性速览及常见布局实现
查看>>
zlib在Linux和windows中的使用
查看>>
rabbitMq实战使用
查看>>
JQuery Easyui/TopJUI表格基本的删除功能(删除当前行和多选删除)
查看>>
javascript 倒计时
查看>>
web前端工程师入门须知
查看>>
linux--->linux 各个文件夹及含义
查看>>
欢迎使用CSD横竖屏切换问题占位
查看>>
2016集训测试赛(二十)Problem B: 字典树
查看>>
中文保存在properties乱码的解决
查看>>
poj题目分类
查看>>
idea 配置mybatis Generator 不显示的解决方案 和 配置MBG
查看>>
英语生疏了,每日至少一句吧
查看>>
创建打不开文件夹
查看>>