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 <bits/stdc++.h>
#define pb push_back
#define ll long long
#define pii pair<int, int>
#define xx first
#define yy second
#define MAXN 40010
using namespace std;
int n, k;
bool koji[MAXN];
ll a[MAXN], b[MAXN], ress;
int main(){
ios_base::sync_with_stdio(false); cin.tie(0); cout.tie(0);
cin>>n>>k;
for (int i=0; i<n; i++) cin>>a[i]>>b[i];
while (k--)
{
int t; cin>>t;
for (int i=0; i<n; i++)
{
if (koji[i]==0) { if (a[i]<=t) koji[i]=1; }
else { if (b[i]<=t) koji[i]=0; }
}
}
for (int i=0; i<n; i++) if (koji[i]==0) ress+=a[i]; else ress+=b[i];
cout<<ress;
}
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |