贪心——玲珑学院OJ 1107 Niro loves Chinese

  • 题目链接: http://www.ifrog.cc/acm/problem/1107

  • 题意:给出一个长度为N的01串,其中包含一些 ’ ? ’ ,将一个 ’ ? ’ 替换成0的花费是C0,替换成1的花费室C1,并且限制不能出现连续N0个0和连续N1个1,数据保证有解,求最小花费

  • 分析:初看我们大多会想到通过动态规划来解这道题,但是因为N的范围室1E5,需要优化成最大堆来,而且也比较麻烦。所以我们猜想能不能每次都取满足条件的情况下的最小花费。

  • 注意:每次需要判断当前 ’ ? ’ 前0或者1的数量,这个时候可能收到前1个 ’ ? ’ 的影响,我们通过记录每个 ’ ? ’ 的位置和它之前和之后0和1的数量来判断

  • AC代码:

/*************************************************************************
    > File Name: B.cpp
    > Author: Akira
    > Mail: qaq.febr2.qaq@gmail.com
    > Created Time: 2017年03月18日 星期六 13时50分49秒
 ************************************************************************/

#include<iostream>
#include<cstdio>
#include<cstring>
#include<string>
#include<cstdlib>
#include<algorithm>
#include<queue>
#include<stack>
#include<map>
#include<cmath>
#include<vector>
#include<set>
#include<list>
#include<ctime>
typedef long long LL;
typedef unsigned long long ULL;
typedef long double LD;
#define MST(a,b) memset(a,b,sizeof(a))
#define CLR(a) MST(a,0)
#define Sqr(a) ((a)*(a))

using namespace std;

#define MaxN 100001
#define MaxM MaxN*10
#define INF 0x3f3f3f3f
#define PI 3.1415926535897932384626
const int mod = 1e9+7;
const int eps = 1e-8;
#define bug cout << 88888888 << endl;

int T;
int N,C0,C1,N0,N1;
char str[100010];
struct Node
{
    int id;
    int l0,r0;
    int l1,r1;
}a[100010];
int main()
{
    scanf("%d", &T);
    while(T--)
    {
        scanf("%d%d%d%d%d", &N, &C0, &C1, &N0, &N1);
        scanf("%s", str+1);
        int cnt = 0;
        for(int i=1;i<=N;i++)
        {
            if(str[i]=='?')
            {
                a[cnt].id = i, a[cnt].l0 = 0, a[cnt].r0 = 0, a[cnt].l1 = 0, a[cnt].r1 = 0;
                cnt++;
            }
        }
        for(int i=0;i<cnt;i++)
        {
            int loc = a[i].id;
            if( str[loc+1] == '1' )
            {
                int j = loc+1;
                while(j<=N && str[j]=='1') 
                {
                    j++;
                    a[i].r1++;
                }
            }
            if(str[loc+1] == '0')
            {
                int j = loc+1;
                while(j<=N && str[j]=='0') 
                {
                    j++;
                    a[i].r0++;
                } 
            }
            if( str[loc-1] == '1' )
            {
                int j = loc-1;
                while(j>=1 && str[j]=='1') 
                {
                    j--;
                    a[i].l1++;
                }
            }
            if(str[loc-1] == '0')
            {
                int j = loc-1;
                while(j>=1 && str[j]=='0') 
                {
                    j--;
                    a[i].l0++;
                } 
            }            
        }
        int ans = 0;
        if(C0<C1)
        {
            for(int i=0;i<cnt;i++)
            {
                if(a[i].l0+a[i].r0+1 < N0)
                {
                    ans += C0;
                    //判断是否和前1个?连接在一起,以下同
                    if( a[i+1].id - a[i+1].l0 == a[i].id+1 && i+1<cnt ) a[i+1].l0+=a[i].l0+1;
                }
                else
                {
                    ans += C1;
                    if( a[i+1].id - a[i+1].l1 == a[i].id+1 && i+1<cnt ) a[i+1].l1+=a[i].l1+1;
                }
            }
        }
        else
        {
            for(int i=0;i<cnt;i++)
            {
                if(a[i].l1+a[i].r1+1 < N1)
                {
                    ans += C1;
                    if( a[i+1].id - a[i+1].l1 == a[i].id+1 && i+1<cnt ) a[i+1].l1+=a[i].l1+1;
                }
                else
                {
                    ans += C0;
                    if( a[i+1].id - a[i+1].l0 == a[i].id+1 && i+1<cnt ) a[i+1].l0+=a[i].l0+1;
                }
            }
        }
        printf("%d\n", ans);
    }
}

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值