0
1
mirror of https://git.sb/baoshuo/OI-codes.git synced 2024-09-16 20:25:24 +00:00
Baoshuo Ren 2021-07-22 15:17:08 +08:00 committed by Baoshuo Ren
parent 1ac51c9103
commit 0f19c2debc
Signed by: baoshuo
GPG Key ID: 70F90A673FB1AB68

42
AcWing/789/789.cpp Normal file
View File

@ -0,0 +1,42 @@
#include <bits/stdc++.h>
using namespace std;
int n, q, t, k, a[100005];
int main() {
cin >> n >> q;
for (int i = 0; i < n; i++) {
cin >> a[i];
}
for (int i = 0; i < q; i++) {
cin >> k;
int l = 0;
int r = n - 1;
while (l < r) {
int mid = l + r >> 1;
if (a[mid] >= k) {
r = mid;
} else {
l = mid + 1;
}
}
if (a[l] != k) {
cout << -1 << ' ' << -1 << endl;
continue;
}
cout << l << ' ';
l = 0;
r = n - 1;
while (l < r) {
int mid = l + r + 1 >> 1;
if (a[mid] <= k) {
l = mid;
} else {
r = mid - 1;
}
}
cout << l << endl;
}
return 0;
}