博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
PAT A1079
阅读量:6414 次
发布时间:2019-06-23

本文共 464 字,大约阅读时间需要 1 分钟。

clipboard.png

思路借鉴了之前的图的层数,发现这个贼好用;
关键在于输出浮点数的格式,这个要注意一下

#include
#include
#include
#include
#include
#include
using namespace std;using std::vector;using std::queue;const int maxn=100010;struct node{ double data; vector
child; int layer=0;}Node[maxn];int n;double p,r;vector
leaf;void BFS(int x){ int layer=0; queue
q; q.push(x); while(!q.empty()){ layer++; int index; int length=q.size(); for(int i=0;i

转载地址:http://awcra.baihongyu.com/

你可能感兴趣的文章
闪迪(SanDisk)U盘防伪查询(官方网站)
查看>>
Android onMeasure方法介绍
查看>>
微信公众号搭建营销型房产项目程序后台开发
查看>>
git使用笔记
查看>>
无锁数据结构
查看>>
RabbitMQ消息队列:任务分发机制
查看>>
substr和substring的区别
查看>>
String.Format用法
查看>>
【转】java NiO 学习笔记
查看>>
MySQL的变量查看和设置
查看>>
Android NDK配、编译、调试
查看>>
长平狐 memcached源代码阅读笔记(二):网络处理部分
查看>>
android onNewIntent
查看>>
实战利用腾讯企业邮箱zabbix3.x邮件(微信/QQ/短信)告警详细配置
查看>>
干掉运营商:神奇盒子让你自建GSM 网络
查看>>
配置企业级wlan
查看>>
XML特殊符号
查看>>
kaptcha可配置项
查看>>
JavaMail邮箱验证用户注册
查看>>
系统时间——ntpd
查看>>