zoukankan      html  css  js  c++  java
  • 1090 Highest Price in Supply Chain (25 分)

    A supply chain is a network of retailers(零售商), distributors(经销商), and suppliers(供应商)-- everyone involved in moving a product from supplier to customer.

    Starting from one root supplier, everyone on the chain buys products from one's supplier in a price Pand sell or distribute them in a price that is r% higher than P. It is assumed that each member in the supply chain has exactly one supplier except the root supplier, and there is no supply cycle.

    Now given a supply chain, you are supposed to tell the highest price we can expect from some retailers.

    Input Specification:

    Each input file contains one test case. For each case, The first line contains three positive numbers: N(≤), the total number of the members in the supply chain (and hence they are numbered from 0 to N1); P, the price given by the root supplier; and r, the percentage rate of price increment for each distributor or retailer. Then the next line contains N numbers, each number Si​​ is the index of the supplier for the i-th member. Sroot​​ for the root supplier is defined to be −. All the numbers in a line are separated by a space.

    Output Specification:

    For each test case, print in one line the highest price we can expect from some retailers, accurate up to 2 decimal places, and the number of retailers that sell at the highest price. There must be one space between the two numbers. It is guaranteed that the price will not exceed 1.

    Sample Input:

    9 1.80 1.00
    1 5 4 4 -1 4 5 3 6
    

    Sample Output:

    1.85 2


    简单搜索
    #include <bits/stdc++.h>
    #define ll long long
    using namespace std;
    int n,k;
    double p,per;
    vector<int> v[100005];
    double a[100010];
    void dfs(int x,double y)
    {
        if(v[x].size()==0)
        {
            a[x] = y ;
            return ;
        }
        if(x==100010){
             for(int i=0;i<v[x].size() ;i++ )
            {
                dfs( v[x][i],y );
            }
        }
        else{
             for(int i=0;i<v[x].size() ;i++ )
            {
                dfs( v[x][i],y*per );
            }
        }
    }
    bool cmp(double a,double b)
    {
        return a>b;
    }
    int main()
    {
        memset(a,0,sizeof(a));
        scanf("%d %lf %lf",&n,&p,&per);
        per = (100+per)/100;
        for(int i=0;i<n;i++)
        {
            scanf("%d",&k);
            if(k==-1)
            {
                v[100010].push_back(i);
            }
            else
            {
                v[k].push_back(i);
            }
        }
        dfs( 100010 , p);
        sort(a,a+n,cmp);
        double maxn = a[0];
        int count1=0;
        for(int i=0;i<n;i++)
        {
            if(a[i] == maxn)
            {
                count1++;
            }
        }
        printf("%.2lf %d
    ",maxn,count1);
        return 0;
    }
     
  • 相关阅读:
    scrapy爬虫框架入门教程
    wing IDE破解方法
    python网络画图——networkX
    Flask Web Development —— Web表单(上)
    pandas聚合和分组运算——GroupBy技术(1)
    Python自然语言工具包(NLTK)入门
    python & pandas链接mysql数据库
    Win10家庭版怎么开启Administrator超级管理员帐户
    Echars保存图片
    Windowserver2008R2安装IIS环境
  • 原文地址:https://www.cnblogs.com/tonyyy/p/10545622.html
Copyright © 2011-2022 走看看