# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
578711 | georgievskiy | 팀들 (IOI15_teams) | C++14 | 4037 ms | 26188 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "teams.h"
#include <bits/stdc++.h>
using namespace std;
const int N = 2e5;
int a[N], b[N];
int n;
void init(int N, int A[], int B[]) {
n = N;
vector<pair<int, int>> t(n);
for (int i = 0; i < n; i++) t[i] = {B[i], A[i]};
sort(t.begin(), t.end());
for (int i = 0; i < n; i++) a[i] = t[i].second, b[i] = t[i].first;
}
int can(int m, int k[]) {
sort(k, k + m);
int p = 0;
for (int i = 0; i < m; i++) {
int x = k[i];
while (k[i]) {
if (a[p] <= x && x <= b[p])
k[i]--;
p++;
if (p == n && !(k[i] == 0 && i == m - 1))
return 0;
}
}
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... |