# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
727679 | mgl_diamond | 팀들 (IOI15_teams) | C++14 | 4072 ms | 9944 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
#define all(x) (x).begin(),(x).end()
#define sz(x) (int)(x).size()
#define C make_pair
#define vec vector
#define ins push_back
#define fi first
#define se second
using namespace std;
using ll = long long;
using ii = pair<int, int>;
const int N = 1e5+5;
int n;
ii guy[N];
void init(int N, int A[], int B[]) {
n = N;
for(int i=0; i<n; ++i) guy[i] = {A[i], B[i]};
sort(guy, guy+n);
}
bool can(int M, int K[]) {
priority_queue<int> pq;
sort(K, K+M);
for(int i=0, j=0; i<M; ++i) {
while (j<n && guy[j].fi <= K[i])
pq.push(-guy[j++].se);
while (!pq.empty() && -pq.top() < K[i])
pq.pop();
while (K[i]--) {
if (pq.empty()) return 0;
pq.pop();
}
}
return 1;
}
컴파일 시 표준 에러 (stderr) 메시지
# | 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... |