码迷,mamicode.com
首页 > 其他好文 > 详细

树的遍历——A1079.Total Sales of Supply Chain(25) 与A1090类似

时间:2020-01-26 22:04:59      阅读:96      评论:0      收藏:0      [点我收藏+]

标签:double   ret   dfs   can   data   div   inf   space   ack   

技术图片

 

#include <bits/stdc++.h>
#include <stdio.h>
#include <stdlib.h>
#include <queue>
using namespace std;
const int maxn = 100010;
struct node{
    double data;
    vector<int> child;
}Node[maxn];
int n;
double p,r,ans = 0;
void DFS(int index,int depth){
    if(Node[index].child.size() == 0){
        ans += Node[index].data * pow(1+r,depth);
        return;
    }else{
        for(int i = 0;i<Node[index].child.size();++i){
            DFS(Node[index].child[i],depth+1);
        }
    }
}
int main(){
    int k,child;
    scanf("%d%lf%lf",&n,&p,&r);
    r /= 100;
    for(int i=0;i<n;++i){
        scanf("%d",&k);
        if(k == 0){
            scanf("%lf",&Node[i].data);
        }else{
            for(int j =0;j<k;++j){
                scanf("%d",&child);
                Node[i].child.push_back(child);
            }
        }
    }
    DFS(0,0);
    printf("%.1f\n",ans * p);
    system("pause");
    return 0;
}

 

树的遍历——A1079.Total Sales of Supply Chain(25) 与A1090类似

标签:double   ret   dfs   can   data   div   inf   space   ack   

原文地址:https://www.cnblogs.com/JasonPeng1/p/12234754.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!