Codeforces 706B. Interesting drink Solution
Solution in C++:
///**********ALLAH IS ALMIGHTY************///
///AH Tonmoy
///Department of CSE,23rd batch
///Islamic University,Bangladesh
- #include<bits/stdc++.h>
- using namespace std;
- int main()
- {
- int n,i;
- cin>>n;
- int a[n+1];
- for(i=0; i<n; i++)
- {
- cin>>a[i];
- }
- sort(a,a+n);
- int m,mv;
- cin>>m;
- for(i=0; i<m; i++)
- {
- cin>>mv;
- cout<<upper_bound(a,a+n,mv)-a<<endl;
- }
- }
No comments