zoukankan      html  css  js  c++  java
  • A1106. Lowest Price in Supply Chain

    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 P and sell or distribute them in a price that is r% higher than P. Only the retailers will face the customers. 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 lowest price a customer 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 (<=105), the total number of the members in the supply chain (and hence their ID's are numbered from 0 to N-1, and the root supplier's ID is 0); P, the price given by the root supplier; and r, the percentage rate of price increment for each distributor or retailer. Then N lines follow, each describes a distributor or retailer in the following format:

    Ki ID[1] ID[2] ... ID[Ki]

    where in the i-th line, Ki is the total number of distributors or retailers who receive products from supplier i, and is then followed by the ID's of these distributors or retailers. Kj being 0 means that the j-th member is a retailer. All the numbers in a line are separated by a space.

    Output Specification:

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

    Sample Input:

    10 1.80 1.00
    3 2 3 5
    1 9
    1 4
    1 7
    0
    2 6 1
    1 8
    0
    0
    0
    

    Sample Output:

    1.8362 2

     1 #include<cstdio>
     2 #include<iostream>
     3 #include<algorithm>
     4 #include<vector>
     5 using namespace std;
     6 typedef struct NODE{
     7     vector<int>child;
     8 }node;
     9 int N, cnt = 0;
    10 double P, r, lowSum = 9999999999;
    11 node tree[100001];
    12 void dfs(int root, int depth){
    13     if(tree[root].child.size() == 0){
    14         double ans = 0;
    15         ans = P * pow(1.0 + r, depth);
    16         if(ans < lowSum){
    17             cnt = 1;
    18             lowSum = ans;
    19         }else if(ans == lowSum){
    20             cnt++;
    21         }
    22         return;
    23     }
    24     int len = tree[root].child.size();
    25     for(int i = 0; i < len; i++){
    26         dfs(tree[root].child[i], depth + 1);
    27     }
    28 }
    29 int main(){
    30     scanf("%d%lf%lf", &N, &P, &r);
    31     r = r / 100.0;
    32     for(int i = 0; i < N; i++){
    33         int tempc;
    34         scanf("%d", &tempc);
    35         if(tempc != 0){
    36             int tempd;
    37             for(int j = 0; j < tempc; j++){
    38                 scanf("%d", &tempd);
    39                 tree[i].child.push_back(tempd);
    40             }
    41         }
    42     }
    43     dfs(0, 0);
    44     printf("%.4f %d", lowSum, cnt);
    45     cin >> N;
    46     return 0;
    47 }
    View Code
  • 相关阅读:
    态度决定你的人生高度(一个人能否成功,就看他的态度)
    要取得成功,必须有所牺牲:职场超级成功秘诀
    28位世界名人得到过的最佳忠告(仔细体味,获益匪浅)
    你可知道
    不要把失败的责任推给你的命运,你距离你的目标有多远
    一个人凭什么自信?认识自我—你就是一座金矿
    试一下,把你的生命折叠51次 相信你会得到成功的厚度
    赠鹰飞道扬(帮别人名字作诗)
    魏海燕(帮别人名字作诗)
    职场有感
  • 原文地址:https://www.cnblogs.com/zhuqiwei-blog/p/8542116.html
Copyright © 2011-2022 走看看