cf976e Well played!

Posted poorpool

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了cf976e Well played!相关的知识,希望对你有一定的参考价值。

qaq

#include <algorithm>
#include <iostream>
#include <cstdio>
using namespace std;
typedef long long ll;
int n, a, b;
ll ans, tmp;
struct Node{
	ll hp, dm;
}nd[200005];
bool cmp(Node x, Node y){
	return x.hp-x.dm>y.hp-y.dm;
}
int main(){
	cin>>n>>a>>b;
	for(int i=1; i<=n; i++)
		scanf("%I64d %I64d", &nd[i].hp, &nd[i].dm);
	sort(nd+1, nd+1+n, cmp);
	for(int i=1; i<=n; i++)
		if(i<=b)	ans += max(nd[i].hp, nd[i].dm);
		else	ans += nd[i].dm;
	if(b==0){
		printf("%I64d\\n", ans);
		return 0;
	}
	tmp = ans;
	for(int i=1; i<=n; i++){
		ll qaq=tmp;
		if(i<=b){
			qaq -= max(nd[i].hp, nd[i].dm);
			qaq += max(nd[i].dm, max(nd[i].hp*(1<<a), nd[i].dm));
			ans = max(ans, qaq);
		}
		else{
			qaq -= nd[i].dm;
			qaq += max(nd[i].dm, max(nd[i].hp*(1<<a), nd[i].dm));
			qaq -= max(nd[b].hp, nd[b].dm);
			qaq += nd[b].dm;
			ans = max(ans, qaq);
		}
	}
	cout<<ans<<endl;
	return 0;
}

以上是关于cf976e Well played!的主要内容,如果未能解决你的问题,请参考以下文章

Codeforces976E Well played!

maven web项目的web.xml报错The markup in the document following the root element must be well-formed.(代码片段

从片段调用 Google Play 游戏服务

CF235B Let‘s Play Osu!

Codeforces 976E

[Codeforces Round #522 (Div. 2, based on Technocup 2019 Elimination Round 3)][C. Playing Piano](代码片段