Algorithm
Code Examples
#1 Code Example with C++ Programming
Code -
C++ Programming
#include <iostream>
#include <algorithm>
using namespace std;
const int N = 2 * 1e5;
int arr[N] = {0};
int main() {
int n, m;
cin >> n >> m;
for(int i = 0; i < n; i++)
cin >> arr[i];
sort(arr, arr+n);
for(int i = 0; i < m; i++) {
int tmp;
cin >> tmp;
cout << upper_bound(arr, arr+n, tmp) - arr << endl;
}
return 0;
}
Copy The Code &
Try With Live Editor
Input
5 4
1 3 5 7 9
6 4 2 8
1 3 5 7 9
6 4 2 8
Output
3 2 1 4
Demonstration
Codeforces Solution-Queries about less or equal elements-Solution in C, C++, Java, Python