이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "teams.h"
#include <bits/stdc++.h>
using namespace std;
int n;
vector<int> a, b;
vector<array<int, 2>> v;
int can(int M, int K[]) {
sort(K, K + M);
map<int, int> frq;
for (int j = 0, i = 0; j < M; ++j) {
for (; i < n && v[i][0] <= K[j]; ++i) ++frq[v[i][1]];
auto it = frq.lower_bound(K[j]);
while (K[j] && it != frq.end()) {
if (it->second <= K[j]) {
K[j] -= it->second;
it->second = 0;
} else {
it->second -= K[j];
K[j] = 0;
}
++it;
}
// cerr << K[j] << endl;
if (K[j]) return 0;
}
return 1;
}
void init(int N, int A[], int B[]) {
n = N;
a.resize(n);
b.resize(n);
v.resize(n);
for (int i = 0; i < n; ++i) {
a[i] = A[i];
b[i] = B[i];
v[i] = {a[i], b[i]};
}
sort(v.begin(), v.end());
}
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |