码迷,mamicode.com
首页 > 其他好文 > 详细

cf976e Well played!

时间:2018-05-03 22:01:18      阅读:1766      评论:0      收藏:0      [点我收藏+]

标签:oid   pac   www.   space   algo   html   div   turn   typedef   

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!

标签:oid   pac   www.   space   algo   html   div   turn   typedef   

原文地址:https://www.cnblogs.com/poorpool/p/8987469.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!