标签:child 技术 name 数组 这一 print 直接 一个 scan
#include<bits/stdc++.h>
using namespace std;
const int maxn = 100010;
struct node{
double data;
vector<int> child;
}Node[maxn];
int n;
double p, r, sum = 0;//用于记录总费用
void DFS(int index, int depth){
if(Node[index].child.size() == 0){
sum += Node[index].data * pow(1+r, depth);
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 num, id;//num用于记录每一个结点的子结点数量, id子结点编号
for(int i = 0; i < n; i++){
scanf("%d", &num);
if(num == 0){
scanf("%lf", &Node[i].data);
}else{
for(int j = 0; j < num; j++){
scanf("%d", &id);
Node[i].child.push_back(id);
}
}
}
DFS(0, 0);
printf("%.1f\n", p*sum);
return 0;
}
A1079 Total Sales of Supply Chain (25分)
标签:child 技术 name 数组 这一 print 直接 一个 scan
原文地址:https://www.cnblogs.com/tsruixi/p/12321855.html