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

第四届蓝桥杯第八题 翻硬币

时间:2018-03-11 17:30:24      阅读:116      评论:0      收藏:0      [点我收藏+]

标签:max   i++   inf   out   pos   names   pre   .com   ring   

技术分享图片

题解:简单贪心, 比赛之前写写水题

#include <iostream>
#include <cstring>
#include <string>
using namespace std;

const int maxn = 1000 + 20;

void solve()
{
    int init[maxn],
        over[maxn];
    
    string in, ov;
                   
    int ans = 0;
    
    cin >> in;
    cin >> ov;
    
    for (unsigned i = 0; i < in.length(); i++) {
        if (in[i] == *) {
            init[i] = 1;
        } 
        else {
            init[i] = 0;
        }
        if (ov[i] == *) {
            over[i] = 1;
        }
        else {
            over[i] = 0;
        }
    }
        
    
    for (unsigned i = 0; i < in.size() - 1; i++)
    {
        if (init[i] != over[i]) {
            init[i] = over[i];
            init[i+1] = !init[i+1];
            ans++;
        }
    }
    cout << ans << endl;
}

int main()
{
    solve();
    
    return 0;
}

 

 

 

 

第四届蓝桥杯第八题 翻硬币

标签:max   i++   inf   out   pos   names   pre   .com   ring   

原文地址:https://www.cnblogs.com/douzujun/p/8543860.html

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