查找最接近的元素
You cannot submit for this problem because the contest is ended. You can click "Open in Problem Set" to view this problem in normal mode.
【题目描述】
在一个非降序列中,查找与给定值最接近的元素。
【输入】
第一行包含一个整数n,为非降序列长度。1 ≤ n ≤ 100000。
第二行包含n个整数,为非降序列各元素。所有元素的大小均在0-1,000,000,000之间。
第三行包含一个整数m,为要询问的给定值个数。1 ≤ m ≤ 10000。
接下来m行,每行一个整数,为要询问最接近元素的给定值。所有给定值的大小均在0-1,000,000,000之间。
【输出】
m行,每行一个整数,为最接近相应给定值的元素值,保持输入顺序。若有多个值满足条件,输出最小的一个。
【输入样例】
3
2 5 8
2
10
5
【输出样例】
8
5
【来源】
一本通在线评测
20230318 二分法随堂测验
- Status
- Done
- Rule
- Ledo
- Problem
- 6
- Start at
- 2023-3-18 10:30
- End at
- 2023-3-18 11:30
- Duration
- 1 hour(s)
- Host
- Partic.
- 18