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 }
  • 相关阅读:
    Perl 基础笔记: 使用 cpanm 安装 Perl 模块
    修改CPAN安装源
    JQUERY实现点击INPUT使光标移动到最后或指定位置
    新手入门Underscore.js 中文(template)
    深入浅出C/C++中的正则表达式库
    [libxml2]_[XML处理]_[使用libxml2的xpath特性修改xml文件内容]
    Mysql事务的隔离级别
    HBase基础知识摘要
    java如何实现一个Future
    遇到过的问题整理-大量页面监控问题
  • 原文地址:https://www.cnblogs.com/zzw1024/p/11325474.html
Copyright © 2011-2022 走看看