博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Codeforces 706B Interesting drink
阅读量:6705 次
发布时间:2019-06-25

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

B. Interesting drink
time limit per test:2 seconds
memory limit per test:256 megabytes
input:standard input
output:standard output

Vasiliy likes to rest after a hard work, so you may often meet him in some bar nearby. As all programmers do, he loves the famous drink "Beecola", which can be bought in n different shops in the city. It's known that the price of one bottle in the shop i is equal to xi coins.

Vasiliy plans to buy his favorite drink for q consecutive days. He knows, that on the i-th day he will be able to spent mi coins. Now, for each of the days he want to know in how many different shops he can buy a bottle of "Beecola".

Input

The first line of the input contains a single integer n (1 ≤ n ≤ 100 000) — the number of shops in the city that sell Vasiliy's favourite drink.

The second line contains n integers xi (1 ≤ xi ≤ 100 000) — prices of the bottles of the drink in the i-th shop.

The third line contains a single integer q (1 ≤ q ≤ 100 000) — the number of days Vasiliy plans to buy the drink.

Then follow q lines each containing one integer mi (1 ≤ mi ≤ 109) — the number of coins Vasiliy can spent on the i-th day.

Output

Print q integers. The i-th of them should be equal to the number of shops where Vasiliy will be able to buy a bottle of the drink on the i-th day.

Example
Input
5 3 10 8 6 11 4 1 10 3 11
Output
0 4 1 5
Note

On the first day, Vasiliy won't be able to buy a drink in any of the shops.

On the second day, Vasiliy can buy a drink in the shops 1, 2, 3 and 4.

On the third day, Vasiliy can buy a drink only in the shop number 1.

Finally, on the last day Vasiliy can buy a drink in any shop.

题目链接:

分析:二分的简单应用吧!在区间内查找上限下限,然后根据这些求出即可!

下面给出AC代码:

1 #include 
2 using namespace std; 3 int main() 4 { 5 int a[100010]; 6 int n,i,m,num; 7 while(scanf("%d",&n)!=EOF) 8 { 9 for(i=1;i<=n;i++)10 scanf("%d",&a[i]);11 sort(a+1,a+1+n);12 scanf("%d",&m);13 while(m--)14 {15 scanf("%d",&num);16 if(num
=a[n])19 printf("%d\n",n);20 else21 {22 int left=1,right=n;23 int mid,ans;24 while(left<=right)25 {26 mid=(left+right)/2;27 if(a[mid]<=num)28 {29 ans=mid;30 left=mid+1;31 }32 else right=mid-1;33 }34 printf("%d\n",ans);35 }36 }37 }38 return 0;39 }

 

转载地址:http://veblo.baihongyu.com/

你可能感兴趣的文章
努力学习 HTML5 (3)—— 改造传统的 HTML 页面
查看>>
java并发编程学习:用 Semaphore (信号量)控制并发资源
查看>>
HDU 2070 Fibbonacci Number
查看>>
Cocos2d-x 3.2 大富翁游戏项目开发-第五部分 单机游戏-级别选择ScrollView
查看>>
Win10系统菜单打不开问题的解决,难道是Win10的一个Bug ?
查看>>
怎么把控制台输入命令之后显示的东西保存到一个记事本中
查看>>
使用ThreadLocal、Apache的dbutils的QueryRunner和dbcp2数据库连接池的BasicDataSource封装操作数据库工具...
查看>>
table完美css样式,table的基本样式,table样式
查看>>
java Map的遍历
查看>>
There is no ID/IDREF binding for IDREF
查看>>
【转】【C#】ColorMatrix
查看>>
找到一款不错的网站压力测试工具webbench
查看>>
spring-boot - demo
查看>>
matlab里plot画多幅图像、设置总标题、legend无边框
查看>>
php non-thread-safe和thread-safe这两个版本有何区别?
查看>>
GetViewUrl
查看>>
SOLID 设计原则
查看>>
好玩的注释
查看>>
一张二维码同时集成微信、支付宝支付
查看>>
【.Net Framework 体积大?】不安装.net framework 也能运行!?原理简介-2(补充)...
查看>>