PAT A1106 Lowest Price in Supply Chain

被刻印的时光 ゝ 提交于 2020-03-08 22:28:46

问题链接: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;
}

 

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!