小心無窮迴圈,ouob
#include <bits/stdc++.h>
#define fast_as_a_fuckboy ios_base::sync_with_stdio(0); cin.tie(0);
using namespace std;
int main(){
fast_as_a_fuckboy;
int x, y;
cin >> x >> y;
vector<int> a(x), b(y);
for(int i = 0;i < x;i++){
cin >> a[i];
}
for(int i = 0;i < y;i++){
cin >> b[i];
}
for(int i = 0;i < y;i++){
int L = 0, R = x-1, M;
bool found = 0;
while(L <= R){
M = L+(R-L)/2; //避免溢位
if(a[M] == b[i]){
cout << M+1 << "\n";
found = 1;
break;
}
else if(a[M] < b[i]){
L = M + 1;//+1避免無窮
}
else{
R = M - 1;//-1避免無窮
}
}
if(!found){
cout << "0\n";
}
}
}