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

Codeforces Round 71

时间:2019-08-25 12:03:19      阅读:88      评论:0      收藏:0      [点我收藏+]

标签:clu   can   include   scan   while   题意   cin   bit   com   

第一题:读题+基础贪心

http://codeforces.com/contest/1207

第二题:思维题

题意:对于

 

第三题:

大佬们的dp写法:

#include<bits/stdc++.h>
using namespace std;
typedef long long ll;
const int maxn = 2e5+5;
const int inf = 0x3f3f3f3f;
ll T, n, a, b, dp[maxn][2];
char s[maxn];
int main()
{
    cin >> T;
    while(T--) {
        memset(dp, inf, sizeof(dp));
        cin >> n >> a >> b;
        scanf("%s", s+1);
        dp[0][0] = b;
        for (int i = 1; i <= n; i++) 
        {
            if (s[i] == 0) 
            {
                dp[i][0] = min(dp[i][0], dp[i-1][0]+a+b);
                dp[i][0] = min(dp[i][0], dp[i-1][1]+2*a+2*b);
                dp[i][1] = min(dp[i][1], dp[i-1][0]+2*a+b);
            }
            dp[i][1] = min(dp[i][1], dp[i-1][1]+a+2*b);
        }
        cout << dp[n][0] << endl;
    }
     return 0;
}

 

Codeforces Round 71

标签:clu   can   include   scan   while   题意   cin   bit   com   

原文地址:https://www.cnblogs.com/Aiahtwo/p/11407242.html

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