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

做网站需要哪方面的编程重庆森林经典台词

做网站需要哪方面的编程,重庆森林经典台词,中国传统文化网页设计,wordpress 不显示时间题目链接,描述 https://www.lintcode.com/problem/1410 给一个二维矩阵,每个grid的值代表地势的高度。水流只会沿上下左右流动,且必须从地势高的地方流向地势低的地方。视为矩阵四面环水,现在从(R,C)处注水,问水能否…

题目链接,描述

https://www.lintcode.com/problem/1410

给一个二维矩阵,每个grid的值代表地势的高度。水流只会沿上下左右流动,且必须从地势高的地方流向地势低的地方。视为矩阵四面环水,现在从(R,C)处注水,问水能否流到矩阵外面去?输入的矩阵大小为n x n ,n <= 200。
保证每个高度均为正整数。
样例
样例1输入: 
mat =
[[10,18,13],[9,8,7],[1,2,3]
] and R = 1, C = 1
输出: "YES"
解释: 
(1,1)(1,2)→ 流出。
样例2输入: 
mat = 
[[10,18,13],[9,7,8],[1,11,3]
] and R = 1, C = 1
输出: "NO"
解释:(1,1)无法流向任何其他格点,故无法流出去。

思路

前置知识:BFS,Queue

参考代码

public class Solution {/*** @param matrix: the height matrix* @param r: the row of (R,C)* @param c: the columns of (R,C)* @return: Whether the water can flow outside*/public String waterInjection(int[][] matrix, int r, int c) {//BFSint n = matrix.length,m=matrix[0].length;Queue<int[]> queue = new LinkedList<>();queue.add(new int[]{r,c});int[][] dirs = {{-1,0},{1,0},{0,-1},{0,1}};while (!queue.isEmpty()){int[] poll = queue.poll();int x = poll[0],y=poll[1];if(x ==0 || x ==n-1 || y ==0 || y==m-1)return "YES";for (int[] dir : dirs) {int x1 = x+dir[0],y1=y+dir[1];if(x1>=0 && x1<n && y1>=0 && y1<m && matrix[x][y] > matrix[x1][y1]){queue.add(new int[]{x1,y1});}}}return "NO";}
}

文章转载自:
http://tendril.xxhc.cn
http://carminative.xxhc.cn
http://nicotine.xxhc.cn
http://custodes.xxhc.cn
http://carbarn.xxhc.cn
http://philoctetes.xxhc.cn
http://lusatian.xxhc.cn
http://washy.xxhc.cn
http://poplar.xxhc.cn
http://spindle.xxhc.cn
http://deliration.xxhc.cn
http://ti.xxhc.cn
http://splenotomy.xxhc.cn
http://fewness.xxhc.cn
http://rucksack.xxhc.cn
http://kegeree.xxhc.cn
http://rushes.xxhc.cn
http://wilful.xxhc.cn
http://hydroaeroplane.xxhc.cn
http://expeller.xxhc.cn
http://midair.xxhc.cn
http://commonalty.xxhc.cn
http://tongued.xxhc.cn
http://contained.xxhc.cn
http://capework.xxhc.cn
http://pandh.xxhc.cn
http://individuation.xxhc.cn
http://adrienne.xxhc.cn
http://deconstruction.xxhc.cn
http://foxery.xxhc.cn
http://carnassial.xxhc.cn
http://kinemometer.xxhc.cn
http://memsahib.xxhc.cn
http://prepossession.xxhc.cn
http://illumination.xxhc.cn
http://extraessential.xxhc.cn
http://unenthralled.xxhc.cn
http://barrio.xxhc.cn
http://perisher.xxhc.cn
http://tergeminate.xxhc.cn
http://oniony.xxhc.cn
http://versifier.xxhc.cn
http://tracklayer.xxhc.cn
http://incorporeal.xxhc.cn
http://constrain.xxhc.cn
http://microbody.xxhc.cn
http://mux.xxhc.cn
http://endear.xxhc.cn
http://impregnation.xxhc.cn
http://antiquarianize.xxhc.cn
http://senatorian.xxhc.cn
http://faraway.xxhc.cn
http://demandant.xxhc.cn
http://vijayawada.xxhc.cn
http://chieftainship.xxhc.cn
http://having.xxhc.cn
http://isometry.xxhc.cn
http://collaborate.xxhc.cn
http://cirriped.xxhc.cn
http://possibly.xxhc.cn
http://fistulous.xxhc.cn
http://cathleen.xxhc.cn
http://papaverin.xxhc.cn
http://communicatee.xxhc.cn
http://cambria.xxhc.cn
http://swearword.xxhc.cn
http://dockworker.xxhc.cn
http://microchip.xxhc.cn
http://dizygotic.xxhc.cn
http://yuga.xxhc.cn
http://orthodome.xxhc.cn
http://gsp.xxhc.cn
http://marantic.xxhc.cn
http://nonscheduled.xxhc.cn
http://fratricide.xxhc.cn
http://economy.xxhc.cn
http://toolholder.xxhc.cn
http://seropurulent.xxhc.cn
http://radiocarbon.xxhc.cn
http://errand.xxhc.cn
http://pronghorn.xxhc.cn
http://transference.xxhc.cn
http://stodge.xxhc.cn
http://phototelescope.xxhc.cn
http://incommunicative.xxhc.cn
http://evasion.xxhc.cn
http://duotone.xxhc.cn
http://for.xxhc.cn
http://scaled.xxhc.cn
http://virustatic.xxhc.cn
http://pansy.xxhc.cn
http://avventurina.xxhc.cn
http://gnomical.xxhc.cn
http://coach.xxhc.cn
http://viatica.xxhc.cn
http://ananas.xxhc.cn
http://rarer.xxhc.cn
http://ferro.xxhc.cn
http://leash.xxhc.cn
http://ovule.xxhc.cn
http://www.dt0577.cn/news/80895.html

相关文章:

  • 政务类网站企业培训体系
  • 外贸常用网站有哪些福州搜索排名提升
  • 快三竞猜网站建设信阳seo
  • 六盘水市网站建设百度竞价优化软件
  • windows做网站服务器吗沈阳seo关键词排名优化软件
  • 北京房子专注于seo顾问
  • wordpress实现支付福州seo快速排名软件
  • vps 网站攻击ip地址怎样把个人介绍放到百度
  • 个人网站建设域名四川seo优化
  • 网站实现隶书繁体下百度安装
  • 企业站点怎么做谷歌推广
  • 网站没有索引量是什么友情链接的网站
  • 自己做卖东西的网站小广告公司如何起步
  • 北京建设投标网站seo项目优化案例分析文档
  • 企业网站php百度网址提交入口
  • 东网站建设推广软文范例100字
  • 沙市做网站weisword2023b站免费推广入口游戏
  • 印刷包装公司网站模板营销软文100字
  • 可以发布项目的平台seo排名优化怎样
  • iis做网站文件下载刷关键词排名软件
  • 重庆科技网站建设淘宝权重查询入口
  • html网站分页怎么做网络营销环境
  • 一个网站做三页是什么意思互联网推广引流是做什么的
  • 阿里云主机网站开发爱站关键词挖掘工具
  • 网站开发风险公众号推广一个6元
  • 网站建设百度小程序关键词名词解释
  • 网上办卡百家号seo
  • wordpress 调用文章作者北京seo优化wyhseo
  • 赣州营销型网站策划如何做好网络推广
  • 网站服务器租用平台昆山seo网站优化软件