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;
    }
     
  • 相关阅读:
    C#中AppDomain.CurrentDomain.BaseDirectory及各种路径获取方法
    Windows 2008 server R2安装.NET Framework4时提示“灾难性故障”
    Mysql explain执行计划
    解决Linux c语言运行时候“段错误 (核心已转储)”问题-采用gdb 解决
    udp-->socket通信原理
    udp通信的原理---makefile文件
    c语言知识点
    linux系统man命令用法和安装方法
    <linux系统c语言生成.so文件,生成64位可执行文件,在64位系统中运行32位的可执行文件>
    ubuntu系统无eth0网卡解决办法
  • 原文地址:https://www.cnblogs.com/tonyyy/p/10545622.html
Copyright © 2011-2022 走看看