华为OD-D卷找座位

在一个大型体育场内举办了一场大型活动,由于疫情防控的需要,要求每位观众的必须间隔至少一个空位才允许落座。现在给出一排观众座位分布图,座位中存在已落座的观众,请计算出,在不移动现有观众座位的情况下,最多还能坐下多少名观众。

输入描述:

一个数组,用来标识某一排座位中,每个座位是否已经坐人。0表示该座位没有坐人,1表示该座位已经坐人。

输出描述:

整数,在不移动现有观众座位的情况下,最多还能坐下多少名观众。

备注:

1<=数组长度<=10000

题目解析:只要保证第i个位置的i-1和i+1都是空的就可以坐,只需要特殊处理首位和末尾就可以!

java 复制代码
import java.util.*;

public class Main {
    public static void main(String[] args) {
//        int[] nums = new int[]{1, 0, 0, 0, 1};
        // 处理数据
        Scanner scanner = new Scanner(System.in);
        String string1 = scanner.next();
        int[] nums = new int[string1.length()];
        for (int i = 0; i < nums.length; i++) {
            nums[i] = string1.charAt(i) - '0';
        }
        if (nums.length == 1) {
            if (nums[0] == 0) {
                System.out.println(1);
            } else {
                System.out.println(0);
            }
            return;
        }
        int result = 0;
        for (int i = 0; i < nums.length; i++) {
            if (nums[i] == 0) {
                // 依次处理首位,中间,末尾,注意顺序
                if (i == 0 && nums[i + 1] == 0) {
                    nums[i] = 1;
                    result++;
                } else if (i > 0 && i < nums.length - 1 && nums[i + 1] == 0 && nums[i - 1] == 0) {
                    nums[i] = 1;
                    result++;
                } else if (i == nums.length - 1 && nums[i - 1] == 0) {
                    nums[i] = 1;
                    result++;
                }
            }
        }
        System.out.println(result);
    }
}
相关推荐
躺不平的理查德7 分钟前
栈(stack)--c语言实现版
c语言·开发语言·数据结构·算法
kikyo哎哟喂1 小时前
数据结构---图
数据结构
我是哈哈hh2 小时前
专题二十四_贪心策略(2)_算法专题详细总结
数据结构·c++·算法·leetcode·贪心算法·贪心
Ws_2 小时前
leetcode LCP 开幕式焰火
开发语言·数据结构·python·算法·leetcode
tigerffff2 小时前
leetcode每日一题(20241203)
java·数据结构·算法·leetcode
怀念无所不能的你2 小时前
洛谷P4913 【深基16.例3】二叉树深度(c嘎嘎)
数据结构·c++·算法
怀念无所不能的你3 小时前
洛谷P1241 括号序列(c嘎嘎)
数据结构·c++·算法·链表·stl
qystca3 小时前
洛谷 P2895 [USACO08FEB] Meteor Shower S C语言 bfs
数据结构·算法·宽度优先
qystca3 小时前
洛谷 P1157 组合的输出 C语言
c语言·数据结构·算法
怀念无所不能的你3 小时前
洛谷P2234 [HNOI2002] 营业额统计(c嘎嘎)
数据结构·c++·算法·链表·stl