-
Notifications
You must be signed in to change notification settings - Fork 1
/
UVa 10611.cpp
54 lines (40 loc) · 913 Bytes
/
UVa 10611.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
#include <bits/stdc++.h>
using namespace std;
#define READ(f) freopen(f, "r", stdin)
#define WRITE(f) freopen(f, "w", stdout)
#define rep(i,n) for(int i = 0 ; i < (n) ; i++)
#define iter(i,a,b) for(int i = (a) ; i < (b) ; i++)
#define mem(a,b) memset(a,b,sizeof(a))
typedef long long ll;
typedef pair<int,int> pii;
typedef pair<int,pii> iii;
typedef vector <pii> vii;
#define INF 1000000000
#define MAXX 1000
int main(){
//READ("UVa 10611.txt");
int n, q;
scanf("%d", &n);
int height[n];
rep(i, n)
scanf("%d", &height[i]);
scanf("%d", &q);
int x;
while(q--){
scanf("%d", &x);
int above = upper_bound(height, height + n, x) - height;
int below = above;
below--;
while(below >= 0 && height[below] == x)
below--;
if(below >= 0)
printf("%d ", height[below]);
else
printf("X ");
if(above == n)
printf("X\n");
else
printf("%d\n", height[above]);
}
return 0;
}