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

树的遍历——A1106.Lowest Price in Supply Chain(25) 求树的深度最小的叶子结点 与A1190类似

时间:2020-01-27 22:04:05      阅读:73      评论:0      收藏:0      [点我收藏+]

标签:span   info   print   bsp   遍历   system   else   com   root   

技术图片

 

 

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

改进后:
技术图片

 

 

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

 

树的遍历——A1106.Lowest Price in Supply Chain(25) 求树的深度最小的叶子结点 与A1190类似

标签:span   info   print   bsp   遍历   system   else   com   root   

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

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