#include <bits/stdc++.h>
long long SendInfo(std::vector<int> W, std::vector<int> C) {
int N = W.size();
std::multiset<int> CC(C.begin(),C.end());
std::sort(W.begin(),W.end());
std::sort(C.begin(),C.end());
ll t=0;
for(int i=0;i<N;i++) {
auto it=CC.lower_bound(W[i]);
if(it!=CC.end())
{
t++;
CC.erase(it);
}
}
return t;
}
#include <bits/stdc++.h>
long long BB;
int N;
std::set<std::pair<int,int>> S;
std::vector<int> CC;
void Init(long long B, std::vector<int> C){
N = C.size();
BB = B;
CC=C;
std::sort(CC.begin(),CC.end());
for(int i=0;i<N;i++) S.insert({C[i],i});
}
int Maid(int W){
int ret;
auto it=S.lower_bound(std::make_pair(W,-1));
if(BB<N && W>CC[BB] || it==S.end()) return -1;
ret=it->second;
S.erase(it);
return ret;
}
Compilation message
king.cpp: In function 'long long int SendInfo(std::vector<int>, std::vector<int>)':
king.cpp:8:2: error: 'll' was not declared in this scope
ll t=0;
^~
king.cpp:13:4: error: 't' was not declared in this scope
t++;
^
king.cpp:13:4: note: suggested alternative: 'it'
t++;
^
it
king.cpp:17:9: error: 't' was not declared in this scope
return t;
^
vassal.cpp: In function 'int Maid(int)':
vassal.cpp:19:10: warning: suggest parentheses around '&&' within '||' [-Wparentheses]
if(BB<N && W>CC[BB] || it==S.end()) return -1;