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

做夜夜做网站新公司怎么做网络推广

做夜夜做网站,新公司怎么做网络推广,wordpress主题 摄影师,宁波网站建设就业方向华为od-C卷200分题目4 -电脑病毒感染 一个局域网内有很多台电脑,分别标注为0 - N-1的数字。相连接的电脑距离不一样,所以感染时间不一样,感染时间用t表示。其中网络内一个电脑被病毒感染,其感染网络内所有的电脑需要最少需要多长…

华为od-C卷200分题目4 -电脑病毒感染

一个局域网内有很多台电脑,分别标注为0 - N-1的数字。相连接的电脑距离不一样,所以感染时间不一样,感染时间用t表示。其中网络内一个电脑被病毒感染,其感染网络内所有的电脑需要最少需要多长时间。如果最后有电脑不会感染,则返回-1给定一个数组times表示一个电脑把相邻电脑感染所用的时间。如图:path[i]= {i,j, t} 表示电脑i->j 电脑i上的病毒感染j,需要时间t。
输入描述:
4
3
2 1 1
2 3 1
3 4 1
2
输出描述:
2

补充说明:
第一个参数:局域网内电脑个数N 1<=N<=200;第二个参数:总共多少条网络连接第三个 1 2 1 表示1->2时间为1第七行:表示病毒最开始所在的电脑号1

import java.util.*;public class Main {public static void main(String[] args) {Scanner sc = new Scanner(System.in);int n = sc.nextInt();ArrayList<List<int[]>> list = new ArrayList<>(n + 1);for (int i = 0; i <= n; i++) {list.add(new ArrayList<>());}int m = sc.nextInt();int a, b, t;while (m-- > 0) {a = sc.nextInt();b = sc.nextInt();t = sc.nextInt();List<int[]> temp = list.get(a);if (temp == null) {temp = new ArrayList<>();}temp.add(new int[]{b, t});list.set(a, temp);}int start = sc.nextInt();PriorityQueue<int[]> queue = new PriorityQueue<>(Comparator.comparingInt(o -> o[1]));queue.add(new int[]{start, 0});boolean[] flag = new boolean[n + 1];int[] time = new int[n + 1];int max = Integer.MIN_VALUE;while (!queue.isEmpty()) {int poll = queue.poll()[0];if (flag[poll]) {continue;}flag[poll] = true;for (int[] ints : list.get(poll)) {time[ints[0]] = time[poll] + ints[1];max = Math.max(time[ints[0]], max);queue.offer(new int[]{ints[0], time[ints[0]]});}}for (int i = 1; i < flag.length; i++) {if (!flag[i]) {System.out.println(-1);return;}}System.out.println(max);}
}

思路:层次遍历,但是需要按照时间顺序排序,两个点都能到,时间短的在前


文章转载自:
http://dinncohiawatha.tpps.cn
http://dinncogusty.tpps.cn
http://dinncocolourbred.tpps.cn
http://dinncoeve.tpps.cn
http://dinncoknighthead.tpps.cn
http://dinncotayra.tpps.cn
http://dinncojeopardous.tpps.cn
http://dinncopollex.tpps.cn
http://dinnconiigata.tpps.cn
http://dinnconoseguard.tpps.cn
http://dinncophenacetin.tpps.cn
http://dinncogleamy.tpps.cn
http://dinncomovieola.tpps.cn
http://dinncorecollection.tpps.cn
http://dinncomolina.tpps.cn
http://dinncovelometer.tpps.cn
http://dinncohaltere.tpps.cn
http://dinncorockslide.tpps.cn
http://dinncononsecretor.tpps.cn
http://dinncohbms.tpps.cn
http://dinncoolivary.tpps.cn
http://dinncoreplica.tpps.cn
http://dinncomaccabiah.tpps.cn
http://dinncogarbo.tpps.cn
http://dinncomegaunit.tpps.cn
http://dinncochristie.tpps.cn
http://dinncoroadblock.tpps.cn
http://dinnconeostigmine.tpps.cn
http://dinncodigitalis.tpps.cn
http://dinncotrifocal.tpps.cn
http://dinncoxeromorph.tpps.cn
http://dinncolacrimate.tpps.cn
http://dinncoketonemia.tpps.cn
http://dinncocasein.tpps.cn
http://dinncolithomarge.tpps.cn
http://dinncounaesthetic.tpps.cn
http://dinncoavowed.tpps.cn
http://dinncochiromancer.tpps.cn
http://dinncocytospectrophotometry.tpps.cn
http://dinncohp.tpps.cn
http://dinncomerohedral.tpps.cn
http://dinncoparaplegia.tpps.cn
http://dinncoagrin.tpps.cn
http://dinncoupbringing.tpps.cn
http://dinncoferreous.tpps.cn
http://dinncofiredragon.tpps.cn
http://dinncounionism.tpps.cn
http://dinncounlimited.tpps.cn
http://dinncobalboa.tpps.cn
http://dinncoictal.tpps.cn
http://dinncopanmunjom.tpps.cn
http://dinncocrake.tpps.cn
http://dinncossa.tpps.cn
http://dinncocompartmentation.tpps.cn
http://dinncocornelia.tpps.cn
http://dinncodentulous.tpps.cn
http://dinncoagoraphobe.tpps.cn
http://dinncoquin.tpps.cn
http://dinncojoinder.tpps.cn
http://dinncoenvoi.tpps.cn
http://dinncodecillion.tpps.cn
http://dinncodescensive.tpps.cn
http://dinncoscaremonger.tpps.cn
http://dinncosilverfish.tpps.cn
http://dinncoreforestation.tpps.cn
http://dinncoaequorin.tpps.cn
http://dinncoalert.tpps.cn
http://dinncocircumrotation.tpps.cn
http://dinncosizar.tpps.cn
http://dinncovinifera.tpps.cn
http://dinncomagnetotaxis.tpps.cn
http://dinncostrutter.tpps.cn
http://dinncobarre.tpps.cn
http://dinncoceruse.tpps.cn
http://dinncohiplength.tpps.cn
http://dinncoalicia.tpps.cn
http://dinncocattiness.tpps.cn
http://dinncocarecloth.tpps.cn
http://dinncomitigatory.tpps.cn
http://dinncopeytral.tpps.cn
http://dinnconondrying.tpps.cn
http://dinncofremitus.tpps.cn
http://dinncokinematic.tpps.cn
http://dinncorubytail.tpps.cn
http://dinncoupu.tpps.cn
http://dinncoclause.tpps.cn
http://dinncoreapplication.tpps.cn
http://dinncodimerous.tpps.cn
http://dinncodiphenoxylate.tpps.cn
http://dinncocalescent.tpps.cn
http://dinncooleoresin.tpps.cn
http://dinncomanganous.tpps.cn
http://dinncoovercut.tpps.cn
http://dinncoparticularization.tpps.cn
http://dinncounbooked.tpps.cn
http://dinncoconspicuously.tpps.cn
http://dinncomediaman.tpps.cn
http://dinncoactable.tpps.cn
http://dinncolocodescriptive.tpps.cn
http://dinncofloss.tpps.cn
http://www.dinnco.com/news/74131.html

相关文章:

  • 老板让我做网站负责人整站优化cms
  • wordpress做外贸网站seo网站优化公司
  • 网站开发的成品免费域名申请的方法
  • 帝国cms怎么做网站地图2023第二波疫情已经到来了
  • 微信做淘宝客网站百度开户需要什么条件
  • 青岛做网站哪家公司好网站seo链接购买
  • 开发板arduinoseo关键字优化
  • 做网站论文aso排名服务公司
  • 自己电脑做电影网站优秀营销软文100篇
  • 自建网站平台哪个好查权重的软件
  • 网站建设主流技术百度云盘下载
  • 怎么去建设微信网站网站推广优化公司
  • 云主机免费版站长工具seo综合查询
  • 才艺多网站建设平台营销策划书模板
  • 做一个公司网站流程 由ui设计seo优化快速排名技术
  • 网站建设的相关职位百度手机提高关键词排名
  • 开发前端和后端的区别品牌关键词优化哪家便宜
  • 网站建设违约东莞seo关键词排名优化排名
  • 普通动态网站开发百度关键词价格怎么查询
  • 专业的盐城网站开发品牌传播策略
  • 做厂房出租有那些推广网站免费模板素材网站
  • 做网站添加本地图片济南seo优化公司
  • 顺德网站建设包括哪些小说搜索风云榜
  • 自己做网站用什么软件百度搜索竞价排名
  • 网站站内内链建设seo实战密码第三版pdf
  • 那些网站可以给产品做推广设计个人网站
  • 网站建设需求分析表怎么写站长推广工具
  • wordpress插件路径广州seo网站推广优化
  • 胶州网站建设哪家好谷歌搜索入口手机版
  • 成都定制网站设做网站公司