# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
165768 | crushteacherswife | 로봇 (IOI13_robots) | C++14 | 0 ms | 0 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
//Rochy'.'
#include <bits/stdc++.h>
#define fo(i,a,b) for(int i=a;i<=b;++i)
#define fd(i,a,b) for(int i=a;i>=b;--i)
#define fl(i,a,b) for(int i=a;i<b;++i)
#define fa(i,a) for(auto i:a)
#define ii pair <int,int>
#define vi vector <int>
#define F first
#define S second
#define pb push_back
#define mp make_pair
#define all(a) a.begin(),a.end()
using namespace std;
template <typename T> inline void read(T &x){char c;bool nega=0;while((!isdigit(c=getchar()))&&(c!='-'));
if(c=='-'){nega=1;c=getchar();}x=c-48;while(isdigit(c=getchar()))x=x*10+c-48;if(nega)x=-x;}
template <typename T> inline void writep(T x){if(x>9)writep(x/10);putchar(x%10+48);}
template <typename T> inline void write(T x){if(x<0){putchar('-');x=-x;}writep(x);putchar(' ');}
template <typename T> inline void writeln(T x){write(x);putchar('\n');}
template <typename R, typename D> inline void Min(R &a, D b){if(a>b) a=b;}
template <typename D, typename R> inline void Max(D &a, R b){if(a<b) a=b;}
const int N=1000006;
int n,m,item,a[N];
ii b[N];
bool check(int x){
int run=1,times;
priority_queue <int> Q;
fo(i,1,n){
while(b[run].F<a[i]&&run<=item){
Q.push(b[run].S);
++run;
}
times=x;
while(Q.size()&×){
Q.pop();
--times;
}
}
while(run<=item){Q.push(b[run].S);++run;}
fo(i,n+1,n+m){
times=x;
while(Q.size()&×)
if(Q.top()<a[i]){
Q.pop();
--times;
}else break;
}
return Q.empty();
}
int main(){
ios_base::sync_with_stdio(NULL);
cin. tie(NULL); cout. tie(NULL);
// freopen("Robots.inp" , "r", stdin);
// freopen("Robots.out", "w", stdout);
read(n);read(m);read(item);
fo(i,1,n+m) read(a[i]);
sort(a+1,a+1+n);
sort(a+1+n,a+n+m+1,greater<int>());
fo(i,1,item){read(b[i].F);read(b[i].S);}
sort(b+1,b+1+item);
int r=item+1;
int l=0;
while(r-l>1){
int mid=l+r>>1;
if(check(mid)) r=mid;
else l=mid;
}
if(r==item+1) write(-1);
else write(r);
return 0;
}