# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
134566 | Boxworld | 팀들 (IOI15_teams) | C++14 | 0 ms | 0 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "teams.h"
#include <bits/stdc++.h>
using namespace std;
typedef pair<int,int> P;
struct S{int l,r;}a[100100];
bool cmp(S x,S y){return x.l<y.l?1:(x.r<y.r?1:0);}
int n;
void init(int N, int A[], int B[]){
n=N;
for (int i=0;i<N;i++){
a[i].l=A[i];a[i].r=B[i];
}
// sort(a,a+N,cmp);
// for (int i=0;i<N;i++)printf("L:%d R:%d\n",a[i].l,a[i].r);
}
int can(int M, int K[]){
int head=0;
sort(K,K+M);
priority_queue<P,vector<P>,greater<P> >Q;
for (int i=0;i<n;i++)Q.push(make_pair(a[i].l,a[i].r));
for (int i=0;i<M;i++){
if (Q.size()<K[i])return 0;
for (int j=0;j<K[i];j++)
P p=Q.top();Q.pop();
if (p.first<=K[i]&&K[i]<=p.second)continue;
else return 0;
}
while(Q.top().first<=K[i]){
P p=Q.top();Q.pop();
if (K[i]<p.second)Q.push(make_pair(K[i]+1,p.second));
}
}
return 1;
}