时间限制
250 ms
内存限制
65536 kB
代码长度限制
16000 B
判题程序
Standard
作者
CHEN, Yue

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 (<=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 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 1010.

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
 #include<stdio.h>
#include<vector>
#include<math.h>
using namespace std; struct Node
{
int parent;
double val;
vector<int> child;
}; Node Tree[];
bool visit[]; double sum; void DFS(int root,int level,double price,double rate)
{
visit[root] = true;
if(Tree[root].child.empty())
{
sum += Tree[root].val * price*pow((+rate)/,level);
}
else
{
for(int i = ;i < Tree[root].child.size();i++)
{
if(visit[Tree[root].child[i]] == false)
DFS(Tree[root].child[i],level+,price,rate);
}
}
} int main()
{
int ID,pro,count,j,num,i;
double price,rate;
scanf("%d%lf%lf",&num,&price,&rate);
for( i = ; i < num ;i++)
{
Tree[i].child.clear();
Tree[i].parent = -;
visit[i]= false;
}
for(i = ;i < num ;i ++)
{
scanf("%d",&count);
if(count == )
{
scanf("%d",&pro);
Tree[i].val = pro;
}
else
{
for(j = ;j < count ;j++)
{
scanf("%d",&ID);
Tree[i].child.push_back(ID);
Tree[ID].parent = i;
}
}
} int root = ;
while(Tree[root].parent != -)
++root;
int level = ;
sum = ;
DFS(root,level,price,rate);
printf("%0.1lf\n",sum); return ;
}

最新文章

  1. ReportViewer报表
  2. Mysql的一些常用命令
  3. Scrum Meeting---One(2015-10-20)
  4. 如何让JS的变量名变量化
  5. workflow 工作流
  6. 搭建maven项目简介
  7. JavaScript拆分字符串并将分割的数据放到数组中
  8. python入门(14)定义函数和接收返回值
  9. 《c++ concurrency in action》读书笔记1
  10. 洛谷 P1053 篝火晚会 解题报告
  11. Scala_针对集合的操作
  12. php操作url 函数等
  13. 基于Shader实现的UGUI描边解决方案
  14. spring boot 学习番外篇:超快速项目初始化
  15. 通过html导出PDF如何分页
  16. django中的权限控制(form增删改)
  17. Educational Codeforces Round 37-F.SUM and REPLACE题解
  18. Markdown入门简介
  19. 在css当中使用opacity
  20. stixel-net绘制指标图

热门文章

  1. Android(java)学习笔记89:泛型概述和基本使用
  2. ng中用$http接后台接口的异步坑
  3. dem30下载地址
  4. linux - 文本处理 及 正则表达式
  5. mysql root给其它用户授权问题
  6. rpm命令使用说明
  7. oracle数据库 PSU,SPU(CPU),Bundle Patches 和 Patchsets 补丁号码快速参考 (文档 ID 1922396.1)
  8. 一步步搭建自己的轻量级MVCphp框架-(一)什么是PHP框架以及MVC设计模式
  9. MyBatis(3.2.3) - Mapped statements: The INSERT statement, Autogenerated keys
  10. 第八章 jQuery与Ajax应用