zoukankan      html  css  js  c++  java
  • Codeforces Round #334 (Div. 2) C. Alternative Thinking 贪心

    C. Alternative Thinking

    Time Limit: 20 Sec

    Memory Limit: 256 MB

    题目连接

    http://codeforces.com/contest/604/problem/C

    Description

    Kevin has just recevied his disappointing results on the USA Identification of Cows Olympiad (USAICO) in the form of a binary string of length n. Each character of Kevin's string represents Kevin's score on one of the n questions of the olympiad—'1' for a correctly identified cow and '0' otherwise.

    However, all is not lost. Kevin is a big proponent of alternative thinking and believes that his score, instead of being the sum of his points, should be the length of the longest alternating subsequence of his string. Here, we define an alternating subsequence of a string as anot-necessarily contiguous subsequence where no two consecutive elements are equal. For example, {0, 1, 0, 1}, {1, 0, 1}, and{1, 0, 1, 0} are alternating sequences, while {1, 0, 0} and {0, 1, 0, 1, 1} are not.

    Kevin, being the sneaky little puffball that he is, is willing to hack into the USAICO databases to improve his score. In order to be subtle, he decides that he will flip exactly one substring—that is, take a contiguous non-empty substring of his score and change all '0's in that substring to '1's and vice versa. After such an operation, Kevin wants to know the length of the longest possible alternating subsequence that his string could have.

    Input

    The first line contains the number of questions on the olympiad n (1 ≤ n ≤ 100 000).

    The following line contains a binary string of length n representing Kevin's results on the USAICO.

    Output

    Output a single integer, the length of the longest possible alternating subsequence that Kevin can create in his string after flipping a single substring.

    Sample Input

    8
    10000011

    Sample Output

    5

    HINT

    题意

    给你一个字符串,你可以使得一个连续的01串翻转过来,然后问你最长的01相隔的子序列(不连续)的长度为多少

    题解:

    答案一定是max(n,maxlen+2)

    maxlen是原本串的最长的01串长度

    代码:

    #include<iostream>
    #include<stdio.h>
    using namespace std;
    
    string s;
    int main()
    {
        int n;
        scanf("%d",&n);
        cin>>s;
        if(n==2)
        {
            printf("2
    ");
            return 0;
        }
        if(n==3)
        {
            printf("3
    ");
            return 0;
        }
        int flag = 0;
        for(int i=0;i<s.size()-1;i++)
        {
            if(s[i]==s[i+1])
                flag = 1;
        }
        if(flag == 0)
        {
            printf("%d
    ",n);
            return 0;
        }
        int ans = 1;
        for(int i=0;i<s.size()-1;i++)
        {
            if(s[i]!=s[i+1])
                ans++;
        }
        printf("%d
    ",min(ans+2,n));
    }
  • 相关阅读:
    selective search生成.mat文件
    2014 百度之星 1003 题解 Xor Sum
    hdu 2544 最短路
    表解锁
    第 10 章 数据结构
    MySQL Study之--Percona Server版本号
    const 不再迷茫
    opecv2 MeanShift 使用均值漂移算法查找物体
    server用JDBC对mysql数据库进行操作
    Django Admin site 显示问题
  • 原文地址:https://www.cnblogs.com/qscqesze/p/5012808.html
Copyright © 2011-2022 走看看