zoukankan      html  css  js  c++  java
  • PAT甲级——A1079 Total Sales of 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 total sales from all the 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 their ID's are numbered from 0 to N1, and the root supplier's ID is 0); P, the unit 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, then instead the total amount of the product will be given after Kj​​. All the numbers in a line are separated by a space.

    Output Specification:

    For each test case, print in one line the total sales we can expect from all the retailers, accurate up to 1 decimal place. It is guaranteed that the number will not exceed 1.

    Sample Input:

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

    Sample Output:

    42.4


     1 #include <iostream>
     2 #include <vector>
     3 #include <queue>
     4 #include <cmath>
     5 using namespace std;
     6 int N;
     7 double p, r, res = 0.0;
     8 struct Node
     9 {
    10     int flag, w, l;
    11     vector<int>next;
    12     Node(int f = 1, int w = 0) :flag(f), w(w) {}
    13 };
    14 int main()
    15 {
    16     cin >> N >> p >> r;
    17     vector<Node*>v;//记录手下人
    18     int k, a;
    19     for (int i = 0; i < N; ++i)
    20     {
    21         cin >> k;
    22         if (k == 0)
    23         {
    24             Node* node = new Node(0);
    25             cin >> node->w;
    26             v.push_back(node);
    27         }
    28         else
    29         {
    30             Node* node = new Node();
    31             for (int j = 0; j < k; ++j)
    32             {
    33                 cin >> a;
    34                 node->next.push_back(a);
    35             }
    36             v.push_back(node);
    37         }
    38     }
    39     int level = 0;
    40     queue<Node*>q;
    41     v[0]->l = 0;
    42     q.push(v[0]);
    43     while (!q.empty())
    44     {
    45         Node* node = q.front();
    46         q.pop();        
    47         if (node->flag == 0)//零售商
    48             res += p * pow((1.0 + r / 100.0), node->l) * node->w;
    49         else
    50         {
    51             for (auto t :node->next)
    52             {
    53                 v[t]->l = node->l + 1;
    54                 q.push(v[t]);
    55             }
    56         }
    57     }
    58     printf("%.1f
    ", res);
    59     return 0;
    60 }
  • 相关阅读:
    DigCSDN介绍首页
    相似qq的IM聊天应用源代码
    iOS单元測试:Specta + Expecta + OCMock + OHHTTPStubs + KIF
    struts2訪问servlet的API
    Reorg
    开源 免费 java CMS
    hdu1874 畅通project续(求最短路径)
    在64位系统下,指向int型的指针占的内存空间多大?
    linux中mv命令使用详解
    C语言中%d,%p,%u,%lu等都有什么用处
  • 原文地址:https://www.cnblogs.com/zzw1024/p/11325474.html
Copyright © 2011-2022 走看看