제출 #1082090

#제출 시각아이디문제언어결과실행 시간메모리
1082090Malix팀들 (IOI15_teams)C++14
0 / 100
4070 ms24508 KiB
#include "teams.h"
#include <bits/stdc++.h>
using namespace std;
 
typedef long long ll;
typedef vector<int> vi;
typedef vector<vi> vii;
typedef pair<int,int> pi;
typedef vector<pi> pii;
typedef tuple<int,int,int> tii;
typedef vector<ll> li;
typedef vector<li> lii;
 
#define REP(i,a,b) for(int i=a;i<b;i++)
#define F first
#define S second
#define PB push_back
#define LSOne(s) ((s)&(-s))
 
ll INF=1000000000000000010;
int inf=1e9+10;
ll M=1e9+7;

pii a;
int n;

void init(int N, int A[], int B[]) {
	n=N;
	REP(i,0,n)a.PB({A[i],B[i]});
}

int can(int m, int K[]) {
	vi b;
	REP(i,0,m)b.PB(K[i]);
	sort(b.begin(),b.end());
	priority_queue<pi,vector<pi>,greater<pi>> pq;
	REP(i,0,n)pq.push(a[i]);
	REP(i,0,m){
		int x=b[i];
		if(pq.empty()||pq.top().F>b[i])return 0;
		while(!pq.empty()&&x>0){
			while(!pq.empty()&&pq.top().S<b[i])pq.pop();
			if(pq.empty()||pq.top().F<b[i])return 0;
			pq.pop();x--;
		}
		if(x>0)return 0;
	}
	return 1;
}
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...