洛谷P3183食物链-题解
摘要:
原题: 思路: 可以采取类似于树形DP的做法 计算出从各个儿子到达目标点的方法 然后加起来,就是这个点的方法 就像是反向的计数DP 代码: #include <bits/stdc++.h> using namespace std; struct node { int u,w,nxt; }e[2000 阅读全文
posted @ 2020-08-14 17:10 鹿我所录 阅读(178) 评论(0) 推荐(0) 编辑