#include <iostream>
#include <climits>
using namespace std;
typedef long long ll;
int main()
{
int n, k;
cin >> n >> k;
int a[n], b[n];
for(int i=0; i<n; i++)
cin >> a[i] >> b[i];
while(k--)
{
int x;
cin >> x;
for(int i=0; i<n; i++)
if(a[i] <= x)
swap(a[i], b[i]);
}
int sum = 0;
for(int i=0; i<n; i++)
sum += a[i];
cout << sum << endl;
}
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
4 ms |
248 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
4 ms |
248 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
4 ms |
248 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |