# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
780496 | vjudge1 | 팀들 (IOI15_teams) | C++17 | 4067 ms | 10820 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "teams.h"
#include<bits/stdc++.h>
using namespace std;
#define pb push_back
#define st first
#define nd second
#define sp " "
#define pii pair<int, int>
int a[500005], b[500005], n;
void init(int N, int A[], int B[]) {
n = N;
vector<int> v(N);
iota(v.begin(), v.end(), 0);
sort(v.begin(), v.end(), [&](int a, int b){
if (B[a] == B[b]) return A[a] < A[b];
return B[a] < B[b];
});
for (int i = 0; i < N; i++)
{
a[i] = A[v[i]], b[i] = B[v[i]];
//cout<<a[i]<<sp<<b[i]<<endl;
}
}
int can(int M, int K[]) {
sort(K, K + M);
vector<int> vis(n, 0);
for (int i = 0; i < M; i++){
int curr = K[i];
for (int j = 0; j < n && curr > 0; j++){
if (vis[j]) continue;
if (a[j] <= K[i] && b[j] >= K[i]){
vis[j] = 1, curr--;
}
}
if (curr > 0) 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... |