【PAT】1079 Total Sales of Supply Chain (25 分)

#include <iostream>
#include <vector>
#include <math.h>
using namespace std;

vector<int> T[100010];
double p,r;

double total_sales=0;
void dfs(int root,int depth){
    if(T[root].size()==1 && T[root][0]<0){
        total_sales+=(-T[root][0])*p*pow(1+0.01*r,depth);
        return;
    }
    for(int i=0;i<T[root].size();i++){
        dfs(T[root][i],depth+1);
    }
}

int main(){
    int n,tmp_n,tmp_t;
    scanf("%d %lf %lf",&n,&p,&r);
    for(int i=0;i<n;i++){
        scanf("%d",&tmp_n);
        if(tmp_n>0)
            while(tmp_n--){
                scanf("%d",&tmp_t);
                T[i].push_back(tmp_t);
            }
        else{
            scanf("%d",&tmp_t);
            T[i].push_back(-tmp_t);//是零售商[叶子结点]时,直接存成负的,节约一点空间
        }
           
    }

    dfs(0,0);
    printf("%.1f",total_sales);

    return 0;
}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值