This submission is migrated from previous version of oj.uz, which used different machine for grading. This submission may have different result if resubmitted.
/*
"TLE is like the wind, always by my side"
- Yasuo - 2022 -
*/
#include <bits/stdc++.h>
#define debug(x) cerr << #x << " " << x << "\n"
#define debugs(x) cerr << #x << " " << x << " "
#pragma GCC optimize("Ofast")
using namespace std;
struct painting
{
int s;
int v;
};
painting a[100001];
int sz[100001];
int n,m,i,j,k;
bool cmp(painting aa, painting bb)
{
if (aa.s!=bb.s)
return aa.s<bb.s;
else
return aa.v<bb.v;
}
int main()
{
ifstream fin("secvp.in");
ofstream fout("secvp.out");
ios_base::sync_with_stdio(false);
cin.tie(0);
cout.tie(0);
cin >> n >> m;
for (i=1;i<=n;i++)
{
cin >> a[i].s >> a[i].v;
}
for (i=1;i<=m;i++)
{
cin >> sz[i];
}
sort(sz+1,sz+1+m);
sort(a+1,a+1+n,cmp);
k=0;
for (i=n;i>=1 && m>0;i--)
{
if (sz[m]>=a[i].s)
{
k++;
m--;
}
}
cout << k;
}
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |