# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
69735 | Vahan | 팀들 (IOI15_teams) | C++17 | 4035 ms | 39496 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "teams.h"
#include<vector>
#include<algorithm>
using namespace std;
struct student{
int l;
int r;
};
student g[600000];
int n,K_mn[600000];
int cmp(student a,student b)
{
if(a.r<b.r)
return 1;
if(a.r==b.r && a.l<b.l)
return 1;
return 0;
}
void init(int N, int A[], int B[]) {
for(int i=0;i<N;i++)
g[i]={A[i],B[i]};
n=N;
sort(g,g+N,cmp);
}
int can(int M, int K[]) {
sort(K,K+M);
for(int i=0;i<M;i++)
K_mn[i]=K[i];
int t=0;
for(int i=0;i<n;i++)
{
if(g[i].l<=K[t] && g[i].r>=K[t])
{
K_mn[t]--;
if(K_mn[t]==0)
t++;
}
if(t==M)
break;
}
if(t==M)
return 1;
return 0;
}
컴파일 시 표준 에러 (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... |