A1090 Highest Price in Supply Chain (25分)

一、技术总结

  1. 主要一个数怎么输入变成一棵树,就是需要定义一个id,然后本身到这的问题int i当做结点号,然后输入。
  2. 就是理解问题了,number是数量还是,编号的意思,其实可以参考样例。
  3. 其余就没有什么了

二、参考代码

#include<bits/stdc++.h>
using namespace std;
const int maxn = 100010;
struct node{
	int data;
	vector<int> child;
}Node[maxn];
int n, num;//n记录结点总数,maxindex记录最高价格销售点 
double p, r, sum = 0;
void DFS(int index, int depth){
	if(Node[index].child.size() == 0){
		if(sum < p*pow(1+r, depth)){
			sum = p*pow(1+r, depth);
			num = 1;
		}else if(sum == p*pow(1+r, depth)){
			num++;
		}
		return;
	}
	for(int i = 0; i < Node[index].child.size(); i++){
		DFS(Node[index].child[i], depth+1);
	}
}
int main(){
	scanf("%d%lf%lf", &n, &p, &r);
	r /= 100;
	int id, root;//用于记录编号 ,root用于记录根结点 
	for(int i = 0; i < n; i++){ 
		scanf("%d", &id);
		if(id == -1) root = i;
		else Node[id].child.push_back(i); 
	}
	DFS(root, 0);
	printf("%.2f %d", sum, num);
	return 0;
}
posted @ 2020-02-17 16:51  睿晞  阅读(139)  评论(0编辑  收藏  举报