# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
147608 | nandonathaniel | 팀들 (IOI15_teams) | C++14 | 0 ms | 0 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "teams.h"
#include <bits/stdc++.h>
using namespace std;
typedef pair<int,int> pii;
pii V[100005];
bool sudah[100005];
bool cmp(pii x,pii y){
return x.second<y.second;
}
void init(int N, int A[], int B[]) {
for(int i=0;i<N;i++)V[i]={A[i],B[i]};
sort(V,V+N,cmp);
}
int can(int M, int K[]) {
memset(sudah,false,sizeof(sudah));
for(int i=0;i<M;i++){
int brp=0;
bool ya=false;
for(int j=0;j<N;j++){
if(!sudah[i] && K[i]>=V[j].first && K[i]<=V[j].second){
brp++;
sudah[i]=true;
}
if(brp==K[i]){
ya=true;
break;
}
}
if(!ya)return 0;
}
return 1;
}