当前位置: 首页 > news >正文

LC2257 保卫格子

题面

LC2257

代码

class Solution {
public:int countUnguarded(int m, int n, vector<vector<int>>& guards, vector<vector<int>>& walls) {// we define:// 0: non-guarded// 1: guarded// 2: occupied by guard// 3: occupied by wallvector<vector<short>> map(m, vector<short>(n, 0));for(auto& guard : guards) {map[guard[0]][guard[1]] = 2;}for(auto& wall : walls) {map[wall[0]][wall[1]] = 3;}// start simulatefor(auto& guard : guards) {// mark horizontally// going leftmostfor(int c = guard[1]-1; c >= 0; --c) {if(map[guard[0]][c] == 2 || map[guard[0]][c] == 3) {break;} else {map[guard[0]][c] = 1; }}// going rightmostfor(int c = guard[1]+1; c < n; ++c) {if(map[guard[0]][c] == 2 || map[guard[0]][c] == 3) {break;} else {map[guard[0]][c] = 1; }}// going downmostfor(int r = guard[0]-1; r >= 0; --r) {if(map[r][guard[1]] == 2 || map[r][guard[1]] == 3) {break;} else {map[r][guard[1]] = 1; }}// going upmostfor(int r = guard[0]+1; r < m; ++r) {if(map[r][guard[1]] == 2 || map[r][guard[1]] == 3) {break;} else {map[r][guard[1]] = 1; }}}long long cnt = 0;for(int i = 0; i < m; ++i) {for(int j = 0; j < n; ++j) {if(!map[i][j]) {++cnt;}}}return cnt;}
};

思路

暴力模拟
待续

http://www.jsqmd.com/news/42538/

相关文章:

  • 2025年移动厕所定做厂家权威推荐榜单:垃圾分类屋/活动房/移动岗亭源头厂家精选
  • 2025江浙沪地区PLC控制柜制造企业综合实力榜:昆山华普拓电气蝉联技术创新与全球化服务双料标杆
  • 【LVGL】加载器部件
  • 2025年质量好的冷弯机组厂家选购指南与推荐
  • Windows 11 下安装 Codex,利用 MegaLLM 的 API 体验 GPT-5
  • 2025哪个出国留学机构好一点
  • 2025年浮筒推流曝气机定制厂家权威推荐榜单:自吸式推流曝气机/推流式曝气机/推流曝气机源头厂家精选
  • 2025留学机构十强
  • 2025杭州好的留学中介有哪些公司
  • 2025出国留学机构哪个好一点
  • 2025年山西高端博物馆展示柜厂家权威排行榜TOP10
  • 2025年诚信的梯形排水沟滑模机品牌厂家排行榜
  • 关于括号序列
  • WinRAR永久授权专用激活KEY方法(rarreg.key)
  • WGCLOUD能监控ARM架构的服务器吗
  • 2025年北京神秘调查公司权威推荐:暗访调研/神秘顾客督查/神秘访客服务机构精选
  • 2025年评价高的液压缸厂家最新热销排行
  • 2025年优秀的化工磁力泵行业内知名厂家排行榜
  • AI编程从 “猜你想要” 到 “精准生成”, 基于Qoder的Spec驱动开发初探.
  • 2025年评价高的球面轴承座TOP实力厂家推荐榜
  • 2025年11月中国电动破胎器厂家推荐排行前十强深度解析
  • 2025年口碑好的十级无尘车间行业内知名厂家排行榜
  • 2025年11月中国电动破胎器品牌排行榜单权威发布
  • 2025年靠谱的厚壁不锈钢管件厂家最新实力排行
  • 2025年特级防火卷帘实力厂家权威推荐:电动防火卷帘/无机布防火卷帘/钢制防火卷帘门源头厂家精选
  • RTOS概要
  • 2025年靠谱的吊钩式抛丸机厂家选购指南与推荐
  • 2025年浓缩脱水分离机厂家权威推荐:卧式螺旋离心机/污泥脱水离心机/沉降离心机设备实力企业精选
  • WPF开发列表 - microsoft
  • 网络基础实验(一)wireshark 验证TCP 三次握手