admin管理员组

文章数量:1558098

How do you remove consecutive spaces in a simple editor like notepad in Microsoft Windows? One way is to repeatedly “replace all” two consecutive spaces with one space (we call it an action). In this problem, you’re to simulate this process and report the number of such “replace all” actions.
    For example, if you want to remove consecutive spaces in “A very big joke.”, you need two actions:
‘‘Averybigjoke.’’ -> ‘‘Averybigjoke.’’ -> ‘‘Averybigjoke.’’
Input
The input contains multiple test cases, one in a separate line. Each line contains letters, digits, punctuations and spaces (possibly leading spaces, but no trailing spaces). There will be no TAB character in the input. The size of input does not exceed 1MB.
Output
For each line, print the number of actions that are required to remove all the consecutive spaces.
Explanation
    If you can’t see clearly, here is the sample input, after replacing spaces with underscores:
A*very␣␣big␣␣␣␣joke.
␣␣␣␣␣␣␣␣␣Goodbye!
Sample Input
A very big joke.
Goodbye!
Sample Output
2
4

问题链接:UVA12416 Excessive Space Remover
问题简述:(略)
问题分析
    简单题不解释。
程序说明:(略)
参考链接:(略)
题记:(略)

AC的C++语言程序如下:

/* UVA12416 Excessive Space Remover */

#include <bits/stdc++.h>

using namespace std;

int main()
{
    int c, spcnt = 0, maxsp = 0;
    while((c = getchar()) != EOF) {
        if(c == ' ') spcnt++;
        else if(c == '\n') {
            printf("%d\n", (int)ceil(log2(maxsp)));
            spcnt = 0, maxsp = 0;
        } else
            maxsp = max(maxsp, spcnt), spcnt = 0;
    }

    return 0;
}

本文标签: 对数字符excessiveRemoverSpace