• 需要打开多少监控器


    题目描述

    某长方形停车场,每个车位上方都有对应监控器,当且仅当在当前车位或者前后左右四个方向任意一个车位范围停车时,监控器才需要打开
    给出某一时刻停车场的停车分布,请统计最少需要打开多少个监控器;

    输入描述:

    第一行输入m,n表示长宽,满足1 < m,n <= 20;
    后面输入m行,每行有n个0或1的整数,整数间使用一个空格隔开,表示该行已停车情况,其中0表示空位,1表示已停:

    输出描述:

    最少需要打开监控器的数量

    示例1

    输入
    
    3 3
    
    0 0 0
    
    0 1 0
    
    0 0 0
    
    输出
    
    5
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    示例2:
    
    输入输出示例仅供调试,后台判题数据一般不包含示例
    
    输入
    
    3 4
    
    0 0 0 0
    
    0 1 0 1
    
    0 0 0 0
    
    输出
    
    8
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17

    题目解析

    解题思路

    数据存储方式 数组形式存储
    数据处理方式 判断周围是否有车

    代码实现

    package com.HW;
    
    import javax.swing.*;
    import java.io.PrintStream;
    import java.sql.SQLOutput;
    import java.util.Arrays;
    import java.util.Locale;
    
    /**
     * @ClassName : TCarMonitor
     * @Author : kele
     * @Date: 2023/10/22 17:24
     * @Description : 需要打开多少监视器
     */
    public class TCarMonitor {
    
        public static void main(String[] args) {
    
            handle("3 4", "0 0 0 0", "0 1 0 1", "0 0 0 0");
            handle("3 3", "0 0 0", "0 1 0", "0 0 0");
    
        }
    
        public static void handle(String coordinate, String... car) {
    
            String[] s = coordinate.split(" ");
            int x = Integer.parseInt(s[0]);
            int y = Integer.parseInt(s[1]);
            int[][] location = new int[x][y];
    
            for (int i = 0; i < x; i++) {
                String[] line = car[i].split(" ");
                for (int j = 0; j < line.length; j++) {
                    location[i][j] = Integer.parseInt(line[j]);
                }
            }
            //需要开启监控器的总数
            int num = 0;
            //遍历各个车位
            for (int i = 0; i < location.length; i++) {
                for (int j = 0; j < location[0].length; j++) {
                    if (isMonitor(i, j, location)) {
                        num ++;
                    }
                }
            }
    
            System.out.println(num);
    
        }
    
    //判断该位置是否需要开监控器
        public static boolean isMonitor(int x, int y, int[][] location) {
    
            int[][] actions = new int[][]{{0, 0}, {1, 0}, {0, 1}, {-1, 0}, {0, -1}};
    
            for (int[] action : actions) {
    
                int x_a = x + action[0];
                int y_a = y + action[1];
    
                if (x_a >= 0 && y_a >= 0 && x_a < location.length && y_a < location[0].length) {
                    if (location[x_a][y_a] == 1) {
                        return true;
                    }
                }
            }
            return false;
        }
    }
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    • 19
    • 20
    • 21
    • 22
    • 23
    • 24
    • 25
    • 26
    • 27
    • 28
    • 29
    • 30
    • 31
    • 32
    • 33
    • 34
    • 35
    • 36
    • 37
    • 38
    • 39
    • 40
    • 41
    • 42
    • 43
    • 44
    • 45
    • 46
    • 47
    • 48
    • 49
    • 50
    • 51
    • 52
    • 53
    • 54
    • 55
    • 56
    • 57
    • 58
    • 59
    • 60
    • 61
    • 62
    • 63
    • 64
    • 65
    • 66
    • 67
    • 68
    • 69
    • 70
  • 相关阅读:
    黑马点评项目遇到的部分问题
    搜索引擎项目
    python odoo 中药的生产管理一
    关系代数与逻辑优化规则 (一): 定义
    Java线程状态转换
    零基础学Python之循环语句的使用(手把手带你做牛客网python代码练习题)
    jQuery - 获取内容和属性
    数据分析——A/B测试二:优惠券AB测试项目
    考华为HCIP证书多钱?
    字符串——实现 strStr()——KMP
  • 原文地址:https://blog.csdn.net/qq_38705144/article/details/133975833