1154F - Shovels Shop - CodeForces Solution


dp greedy sortings *2100

Please click on ads to support us..

C++ Code:

#include<bits/stdc++.h>
using namespace std;

#define IOS ios::sync_with_stdio(false),cin.tie(0),cout.tie(0)
#define ll long long
#define no cout << "no\n"
#define yes cout << "yes\n"
#define endl "\n"
#define dbg(x...) do{cout<<#x<<" -> ";err(x);}while(0)
void err(){cout<<"\n";}
template<class T,class... Ts>
void err(T arg,Ts... args){
	cout<<arg<<" ";
	err(args...);
}

const int N = 200005;

int n, m, k, m_=0, p[N];
ll f[N], a[N];

void solve() {
	cin>>n>>m>>k; a[0]=0; 
	for(int i = 1; i <= n; i++) { cin>>a[i]; p[i]=0; }
	sort(a+1,a+1+n);
//	n=k;
	for(int i = 1; i <= m; i++) {
		int x,y;
		cin>>x>>y;
		p[x] = max(p[x], y);
	}
	for(int i = 1; i <= n; i++) a[i] += a[i-1];
	for(int i = 1; i <= k; i++)
		for(int j = 0; j < i; j++)
			f[i] = max(f[i], f[j] + a[j+p[i-j]]-a[j]);
	
	cout << a[k]-f[k] << endl;
}
		

signed main(){
	IOS;
	int T=1;
//	cin>>T;
	while(T--){
		solve();
	}
	return 0;
}


Comments

Submit
0 Comments
More Questions

686A - Free Ice Cream
1358D - The Best Vacation
1620B - Triangles on a Rectangle
999C - Alphabetic Removals
1634C - OKEA
1368C - Even Picture
1505F - Math
1473A - Replacing Elements
959A - Mahmoud and Ehab and the even-odd game
78B - Easter Eggs
1455B - Jumps
1225C - p-binary
1525D - Armchairs
1257A - Two Rival Students
1415A - Prison Break
1271A - Suits
259B - Little Elephant and Magic Square
1389A - LCM Problem
778A - String Game
1382A - Common Subsequence
1512D - Corrupted Array
667B - Coat of Anticubism
284B - Cows and Poker Game
1666D - Deletive Editing
1433D - Districts Connection
2B - The least round way
1324A - Yet Another Tetris Problem
246B - Increase and Decrease
22E - Scheme
1566A - Median Maximization