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
  • 相关阅读:
    [CFNews] Ediscovery: 4 scenarios that call for computer forensics
    [CFNews] MacForensicsLab发布MacLockPick 3.0
    [CFNews] Logicube也欲分“山寨机”取证一杯羹
    [CFNews] Tableau 发布全功能只读接口T35689iu
    [转载] Windows 8 TypedURLsTime
    [CFNews] Guidance发布EnCase V7.04.01中文及英文版
    [CFNews] AIS Inc. 发布苹果取证产品MacResponse LE
    [CFNews] Office 20072010、PGP全盘加密快速破解,Passware Kit 11.7发布
    [CFNews] GSI发布EnCase v7.04
    [CFNews] Paraben发布ProjectAPhone新型号ICD8000
  • 原文地址:https://www.cnblogs.com/zhuqiwei-blog/p/8542116.html
Copyright © 2011-2022 走看看