#include #include #include using namespace std; struct config { int wi,bi; }; int N,M; vector < pair > x; bool comp(config x, config y) { if (x.wi >y.wi) return true; return false; } int main() { cin >> N >>M; for(int i=0; i> y.wi >> y.bi; x.push_back(make_pair(y.wi,y.bi)); } sort(x.begin(),x.end()); int tW=0,tB=0; for(int i=0; i