# | TimeUTC-0 | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
47524 | ngkan146 | Schools (IZhO13_school) | C++11 | 192 ms | 41936 KiB |
This submission is migrated from previous version of oj.uz, which used different machine for grading. This submission may have different result if resubmitted.
// khanh best
#include <bits/stdc++.h>
#define ll long long
using namespace std;
struct school{
ll m, s, id;
school(ll m=0,ll s=0,ll id=0): m(m), s(s), id(id) {}
};
ll N,M,S;
school a[300005];
ll sum;
bool cmp(school x,school y){
return x.m - x.s < y.m - y.s;
}
struct cmpS{
bool operator ()(school x,school y){
return x.s > y.s;
}
};
struct cmpM{
bool operator ()(school x,school y){
return x.m - x.s > y.m - y.s;
}
};
struct cmpM2{
bool operator ()(school x,school y){
return x.m > y.m;
}
};
priority_queue <school,vector<school>,cmpS> pqS;
Compilation message (stderr)
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |