# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
830880 | drdilyor | 팀들 (IOI15_teams) | C++17 | 4056 ms | 10940 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include<bits/stdc++.h>
#include "teams.h"
using namespace std;
using ll = long long;
int n;
vector<pair<int,int>> arr;
void init(int n, int* a, int* b) {
::n = n;
arr.resize(n);
for( int i = 0; i < n; i++)
arr[i] = {a[i], b[i]};
}
int can(int m, int* ts) {
sort(ts, ts + m, greater());
sort(arr.begin(), arr.end(), greater());
vector<int> used(n);
int team = 0;
while (team < m) {
int cnt = 0;
for (int student = 0; student < n; student++) {
if (used[student]) continue;
auto [l,r] = arr[student];
if (l <= ts[team] && ts[team] <= r) {
used[student] = 1;
cnt++;
}
if (cnt == ts[team]) break;
}
if (cnt == ts[team]) team++;
else break;
}
return team == m;
}
컴파일 시 표준 에러 (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... |