# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
242867 | godwind | 팀들 (IOI15_teams) | C++14 | 4072 ms | 16760 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "teams.h"
#include <iostream>
#include <vector>
#include <algorithm>
#include <random>
#include <set>
#include <map>
#include <queue>
#include <cstring>
#include <cmath>
#include <bitset>
#include <iomanip>
#include <functional>
using namespace std;
const int N = 100 * 1000 + 228;
int n;
int a[N], b[N];
bool used[N];
void init(int N, int A[], int B[]) {
n = N;
for (int i = 0; i < n; ++i) {
a[i] = A[i];
b[i] = B[i];
}
}
int can(int M, int K[]) {
int sum_all = 0;
for (int i = 0; i < M; ++i) {
sum_all += K[i];
if (sum_all > n) {
return 0;
}
}
sort(K, K + M);
for (int xxx = 0; xxx < M; ++xxx) {
int S = K[xxx];
for (int it = 0; it < S; ++it) {
int opt = -1;
for (int i = 0; i < n; ++i) {
if (a[i] <= S && S <= b[i] && !used[i]) {
if (opt == -1) {
opt = i;
} else {
if (b[i] < b[opt]) {
opt = i;
}
}
}
}
if (opt == -1) return 0;
used[opt] = 1;
}
}
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... |