问题链接:https://pintia.cn/problem-sets/994805342720868352/problems/994805362341822464
题意:
给出一棵销售供应树,树根唯一。在树根处货物的价格为P,然后从根结点开始每往子结点走一层,该层的货物价格将会在父亲结点的价格上增加r%。求叶子结点处能获得的最低价格,以及能提供最低价格的叶子结点个数。
Note:
1 本题深度初始值为0。
2 r是百分号 要注意除以100
#include<cstdio>
#include<iostream>
#include<vector>
#include<cmath>
using namespace std;
const int maxn = 100010;
int n;
double p, r;
vector<int> child[maxn];
int lownum = 0;
int lowdepth = maxn;
void DFS(int index, int depth){
if(child[index].size() == 0){
if(depth < lowdepth){
lowdepth = depth;
lownum = 1;
}else if(depth == lowdepth){
lownum ++;
}
}
for(int i = 0; i < child[index].size(); i++)
DFS(child[index][i], depth + 1);
}
int main(){
int k, x;
cin >> n >> p >> r;
for(int i = 0; i < n; i++){
cin >> k;
for(int j = 0; j < k; j++)
{
cin >> x;
child[i].push_back(x);
}
}
DFS(0, 0);
r /= 100;
printf("%.4f %d",p * pow(1+r, lowdepth), lownum);
return 0;
}
来源:CSDN
作者:满树
链接:https://blog.csdn.net/jiangjiangjiang6/article/details/104739794