博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
51nod 1273 旅行计划(思维题)
阅读量:5081 次
发布时间:2019-06-12

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

  一开始看到这题真的有点懵逼...一直在想着套算法,结果题解除了sort和dfs其他什么都没用到

  显然每次到达的一定都是叶子,先从根节点dfs一遍,按深度对叶子降序排序,按这个顺序向根节点dfs,路径上没有被之前的叶子遍历过的点就是到达这个叶子时未经过的点的个数,于是我们跑出所有叶子未经过点的个数再排序一次输出就行了

#include
#include
#include
#include
#include
#include
#include
#include
#define ll long long using namespace std;const int maxn=500010,inf=1e9;struct tjm{ int too,pre;}e[maxn];struct poi{ int w,pos;}a[maxn],b[maxn];int n,x,tot,cnt,root,t;int last[maxn];bool v[maxn];void read(int &k){ int f=1;k=0;char c=getchar(); while(c<'0'||c>'9')c=='-'&&(f=-1),c=getchar(); while(c<='9'&&c>='0')k=k*10+c-'0',c=getchar(); k*=f;}inline bool cmp(poi a,poi b){ return a.w==b.w?a.pos
b.w;}inline void add(int x,int y){e[++tot].too=y;e[tot].pre=last[x];last[x]=tot;}inline void dfs(int x,int dep,int fa){ bool flag=0; for(int i=last[x];i;i=e[i].pre) if(e[i].too!=fa)dfs(e[i].too,dep+1,x),flag=1; if((!flag)&&x!=root)a[++cnt].pos=x,a[cnt].w=dep;}inline bool dfs2(int x,int fa){ if(x==root||v[x])return 1; for(int i=last[x];i;i=e[i].pre) if(e[i].too!=fa)if(dfs2(e[i].too,x))return t++,v[x]=1,1; return 0;}int main(){ read(n);read(root); for(int i=1;i
View Code

先分析,再做题!

转载于:https://www.cnblogs.com/Sakits/p/7388172.html

你可能感兴趣的文章
十个免费的 Web 压力测试工具
查看>>
EOS生产区块:解析插件producer_plugin
查看>>
mysql重置密码
查看>>
jQuery轮 播的封装
查看>>
一天一道算法题--5.30---递归
查看>>
JS取得绝对路径
查看>>
排球积分程序(三)——模型类的设计
查看>>
python numpy sum函数用法
查看>>
php变量什么情况下加大括号{}
查看>>
linux程序设计---序
查看>>
【字符串入门专题1】hdu3613 【一个悲伤的exkmp】
查看>>
C# Linq获取两个List或数组的差集交集
查看>>
HDU 4635 Strongly connected
查看>>
ASP.NET/C#获取文章中图片的地址
查看>>
Spring MVC 入门(二)
查看>>
格式化输出数字和时间
查看>>
页面中公用的全选按钮,单选按钮组件的编写
查看>>
java笔记--用ThreadLocal管理线程,Callable<V>接口实现有返回值的线程
查看>>
BZOJ 1047 HAOI2007 理想的正方形 单调队列
查看>>
各种语言推断是否是手机设备
查看>>