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

3D--最小代价回文串

时间:2014-08-25 20:47:14      阅读:191      评论:0      收藏:0      [点我收藏+]

标签:style   blog   color   os   io   for   ar   div   log   

给你一个序列由),(,?组成,第i个?变成左括号,和右括号的代价不同,现在让你组成一个回文序列并让其花费的代价最少

#include <iostream>
#include <cstdio>
#include <cstdlib>
#include <cmath>
#include <cstring>
#include <stack>
#include <map>
#include <queue>
using namespace std;

struct cost {
    int p;
    int v;
    bool operator < (const cost& a) const {
        return v < a.v;
    }
};

cost make(int p, int v) {
    cost ret;
    ret.p = p;
    ret.v = v;
    return ret;
}

char str[50004];
int main() {
    scanf("%s", str);
    int cnt = 0;
    int len = strlen(str);
    int a, b;
    priority_queue<cost> q;

    long long ans = 0;
    for (int i = 0; i < len; i++) {
        cnt += str[i] == (;
        cnt -= str[i] == ) || str[i] == ?;

        if (str[i] == ?) {
            scanf("%d %d", &a, &b);
            q.push(make(i, b-a));
            ans += b;
            str[i] = );
        }

        if (cnt < 0 && q.empty()) {
            ans = -1;
            break;
        }

        if (cnt < 0) {
            cost top = q.top();
            q.pop();
            ans = ans - top.v;
            str[top.p] = (;
            cnt += 2;
        }
    }

    if (cnt > 0) ans = -1;
    printf("%I64d\n", ans);
    if (ans != -1) printf("%s\n", str);

    return 0;
}

 

3D--最小代价回文串

标签:style   blog   color   os   io   for   ar   div   log   

原文地址:http://www.cnblogs.com/Susake/p/3935728.html

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