이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
const int mxsz = 1e5 + 7;
int n, m, s[mxsz], v[mxsz], c[mxsz], an;
bool cmp (int i, int j) {
return c[i] > c[j];
}
bool comp (int i, int j) {
if (s[i] == s[j]) {
return v[i] < v[j];
}
return s[i] < s[j];
}
int find (int x, int p) {
while (p <= n+1 && s[p++] > x);
return p - 1;
}
int main() {
cin >> n >> m;
for (int i = 1; i <= n; i++) {
cin >> s[i] >> v[i];
}
for (int i = 1; i <= m; i++) {
cin >> c[i];
}
sort(s + 1, s + n + 1, comp);
sort(c + 1, c + n + 1, cmp);
int po = 1, pos = 1;
for (int i = 1; i <= m; i++) {
pos = find(c[i], po);
po = pos;
if (po == n+1) {
break;
} po++, an++;
}
cout << an;
}
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |