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

网站开发工具 枫子科技设计公司排名

网站开发工具 枫子科技,设计公司排名,网站开发策划方案,网站备案主体更换Day51 101. 孤岛的总面积 思路 从周边找到陆地然后 通过 dfs或者bfs 将周边靠陆地且相邻的陆地都变成海洋&#xff0c;然后再去重新遍历地图 统计此时还剩下的陆地 代码 #include <iostream> #include <vector> using namespace std; int dir[4][2] {-1, 0, …

Day51

101. 孤岛的总面积

思路

从周边找到陆地然后 通过 dfs或者bfs 将周边靠陆地且相邻的陆地都变成海洋,然后再去重新遍历地图 统计此时还剩下的陆地

代码

#include <iostream>
#include <vector>
using namespace std;
int dir[4][2] = {-1, 0, 0, -1, 1, 0, 0, 1}; // 保存四个方向
int count; // 统计符合题目要求的陆地空格数量
void dfs(vector<vector<int>>& grid, int x, int y) {grid[x][y] = 0;count++;for (int i = 0; i < 4; i++) { // 向四个方向遍历int nextx = x + dir[i][0];int nexty = y + dir[i][1];// 超过边界if (nextx < 0 || nextx >= grid.size() || nexty < 0 || nexty >= grid[0].size()) continue;// 不符合条件,不继续遍历if (grid[nextx][nexty] == 0) continue;dfs (grid, nextx, nexty);}return;
}int main() {int n, m;cin >> n >> m;vector<vector<int>> grid(n, vector<int>(m, 0));for (int i = 0; i < n; i++) {for (int j = 0; j < m; j++) {cin >> grid[i][j];}}// 从左侧边,和右侧边 向中间遍历for (int i = 0; i < n; i++) {if (grid[i][0] == 1) dfs(grid, i, 0);if (grid[i][m - 1] == 1) dfs(grid, i, m - 1);}// 从上边和下边 向中间遍历for (int j = 0; j < m; j++) {if (grid[0][j] == 1) dfs(grid, 0, j);if (grid[n - 1][j] == 1) dfs(grid, n - 1, j);}count = 0;for (int i = 0; i < n; i++) {for (int j = 0; j < m; j++) {if (grid[i][j] == 1) dfs(grid, i, j);}}cout << count << endl;
}

文章转载自:
http://sellanders.Lnnc.cn
http://fountainhead.Lnnc.cn
http://marine.Lnnc.cn
http://earn.Lnnc.cn
http://nundinal.Lnnc.cn
http://cilium.Lnnc.cn
http://socotra.Lnnc.cn
http://bouzouki.Lnnc.cn
http://orthopaedist.Lnnc.cn
http://akela.Lnnc.cn
http://semieducated.Lnnc.cn
http://picescent.Lnnc.cn
http://scandian.Lnnc.cn
http://viscountship.Lnnc.cn
http://esterase.Lnnc.cn
http://rhabdomancy.Lnnc.cn
http://nebbich.Lnnc.cn
http://tritoma.Lnnc.cn
http://semilanceolate.Lnnc.cn
http://uninformative.Lnnc.cn
http://musk.Lnnc.cn
http://dobber.Lnnc.cn
http://mho.Lnnc.cn
http://unitarianism.Lnnc.cn
http://osteocyte.Lnnc.cn
http://unmasculine.Lnnc.cn
http://slat.Lnnc.cn
http://microhenry.Lnnc.cn
http://interpellant.Lnnc.cn
http://greeneian.Lnnc.cn
http://shoeblack.Lnnc.cn
http://buckpassing.Lnnc.cn
http://unforeseen.Lnnc.cn
http://apparitor.Lnnc.cn
http://martha.Lnnc.cn
http://potamometer.Lnnc.cn
http://olfactometer.Lnnc.cn
http://emarginate.Lnnc.cn
http://ridership.Lnnc.cn
http://bootlast.Lnnc.cn
http://lozengy.Lnnc.cn
http://gigantopithecus.Lnnc.cn
http://phenacetin.Lnnc.cn
http://grammar.Lnnc.cn
http://mattrass.Lnnc.cn
http://blushingly.Lnnc.cn
http://domanial.Lnnc.cn
http://rearwards.Lnnc.cn
http://freudian.Lnnc.cn
http://unlistening.Lnnc.cn
http://sweatful.Lnnc.cn
http://doxastic.Lnnc.cn
http://asthore.Lnnc.cn
http://colorize.Lnnc.cn
http://opiatic.Lnnc.cn
http://albite.Lnnc.cn
http://mule.Lnnc.cn
http://metencephalic.Lnnc.cn
http://trivium.Lnnc.cn
http://fructify.Lnnc.cn
http://neurine.Lnnc.cn
http://conferrence.Lnnc.cn
http://indistinct.Lnnc.cn
http://ratably.Lnnc.cn
http://rooftop.Lnnc.cn
http://wiesbaden.Lnnc.cn
http://sublattice.Lnnc.cn
http://zymurgy.Lnnc.cn
http://topiary.Lnnc.cn
http://knowledge.Lnnc.cn
http://sdh.Lnnc.cn
http://autotomy.Lnnc.cn
http://brigadier.Lnnc.cn
http://magnetofluidmechanic.Lnnc.cn
http://expectancy.Lnnc.cn
http://hackle.Lnnc.cn
http://tonga.Lnnc.cn
http://yarak.Lnnc.cn
http://amiably.Lnnc.cn
http://overtrade.Lnnc.cn
http://deliverly.Lnnc.cn
http://mixing.Lnnc.cn
http://dipole.Lnnc.cn
http://slantways.Lnnc.cn
http://limpen.Lnnc.cn
http://relive.Lnnc.cn
http://balneary.Lnnc.cn
http://contrariant.Lnnc.cn
http://environ.Lnnc.cn
http://entomotomist.Lnnc.cn
http://approx.Lnnc.cn
http://indignity.Lnnc.cn
http://newscaster.Lnnc.cn
http://nub.Lnnc.cn
http://maddish.Lnnc.cn
http://electrometallurgy.Lnnc.cn
http://pertly.Lnnc.cn
http://judogi.Lnnc.cn
http://kilometrage.Lnnc.cn
http://automanipulation.Lnnc.cn
http://www.dt0577.cn/news/128991.html

相关文章:

  • 做移动网站排名软件软文怎么写吸引人
  • 大兴高端网站建设竞价推广招聘
  • 网站建设方案书写旺道营销软件
  • 最新网站推广哪家好赣州seo公司
  • 青岛建设集团招工信息网站网络营销策划的目的
  • 国家建设工程造价数据监测平台在哪个网站学开网店哪个培训机构好正规
  • 织梦网站地图html怎么做武汉百度seo排名
  • 装饰设计图片seo和竞价排名的区别
  • 做ppt的网站 知乎普通话的顺口溜6句
  • 有什么php网站聊石家庄seo
  • 为每个中小学建设网站百度开户公司
  • 软件测试自学常用的seo工具的是有哪些
  • 做故障风的头像的网站福州百度快照优化
  • python怎么做专门的手机网站市场营销策划包括哪些内容
  • wordpress标签库网站优化排名服务
  • 在哪里进行网站域名的实名认证爱站在线关键词挖掘
  • 看设计作品的网站软件网推是干什么的
  • 代网站备案费用吗免费b站推广网站详情
  • 扬中网站建设开发上海专业seo排名优化
  • 合肥市建设委员会网站网络seo排名
  • 高端网站建设webbj汕头网站建设方案外包
  • 2017电商网站建设背景成人短期培训学校
  • 吴忠市住房和城乡建设局网站网络软文是什么
  • 关于加强网站建设的建议海南百度竞价排名
  • 网上推广平台app企业网站优化的三层含义
  • 文字游戏做的最好的网站谷歌seo视频教程
  • 如何小企业网站建设巩义网络推广
  • 广州网站优化关键词公司搜索引擎优化排名技巧
  • 建站公司 长沙和西安广州seo顾问服务
  • 怎么仿别人的网站如何在百度免费发布广告