# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
540856 | GioChkhaidze | 팀들 (IOI15_teams) | C++14 | 4097 ms | 52376 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
#include "teams.h"
#define pb push_back
using namespace std;
const int Nn = 5e5 + 5;
int n, a[Nn], b[Nn], f[Nn];
vector < int > G[Nn];
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];
}
for (int i = 0; i < N; ++i) {
G[A[i]].pb(i);
}
}
int can(int M, int K[]) {
for (int i = 0; i < M; ++i) {
f[K[i]]++;
}
multiset < int > st;
bool ok = true;
for (int i = 1; i <= n; ++i) {
for (int j = 0; j < G[i].size(); ++j) {
int id = G[i][j];
st.insert(b[id]);
}
for (int j = 1; j <= 1ll * f[i] * i; ++j) {
if (!st.size()) {
ok = false;
break;
}
if ((*st.begin()) < i) {
ok = false;
break;
}
st.erase(st.find(*st.begin()));
}
if(!ok) break;
}
for (int i = 0; i < M; ++i) {
f[K[i]] = 0;
}
return ok;
}
컴파일 시 표준 에러 (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... |