A. Erasing Zeroes

A. Erasing Zeroes


time limit per test1 second
memory limit per test256 megabytes
inputstandard input
outputstandard output

You are given a string s. Each character is either 0 or 1.

You want all 1’s in the string to form a contiguous subsegment. For example, if the string is 0, 1, 00111 or 01111100, then all 1’s form a contiguous subsegment, and if the string is 0101, 100001 or 11111111111101, then this condition is not met.

You may erase some (possibly none) 0’s from the string. What is the minimum number of 0’s that you have to erase?

Input
The first line contains one integer t (1≤t≤100) — the number of test cases.

Then t lines follow, each representing a test case. Each line contains one string s (1≤|s|≤100); each character of s is either 0 or 1.

Output
Print t integers, where the i-th integer is the answer to the i-th testcase (the minimum number of 0’s that you have to erase from s).

Example
input

3
010011
0
1111000

output

2
0
0

#include <iostream>
#include <string>
#include <vector>
#include <cmath>
#include <iomanip>
#include <map>
#include <set>
#include <algorithm>
using namespace std;


int main() {
    int n;
    cin >> n;
    for (int i = 0; i < n; i++) {
        string s;
        cin >> s;
        int a = 0;
        int b = 0;
        for (int j = 0; j < s.size(); j++) {
            if (s[j] == '1') {
                a = j;                           //记录第一个1的位置
                break;
            }
        }
        for (int j = s.size() - 1; j > -1; j--) {
            if (s[j] == '1') {
                b = j;                           //记录最后一个1的位置
                break;
            }
        }
        int ans = 0;
        for (int j = a; j < b; j++) {
            if (s[j] == '0') {
                ans++;                           //计算从第一个1到最后一个1中0的个数
            }
        }
        cout << ans << endl;
    }
}

另一种思路,用数组记录下1的所有下标,再用数组最后一个元素减去第一个元素,即得到区间的长度,而数组长度就是区间中1的个数,相减即可得到答案。

  • 0
    点赞
  • 2
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值