This submission is migrated from previous version of oj.uz, which used different machine for grading. This submission may have different result if resubmitted.
#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 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... |