1106. Lowest Price in Supply Chain (25)

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<stdio.h>
 2 #include<vector>
 3 #include<algorithm>
 4 #include<math.h>
 5 using namespace std;
 6 int ans[111][111];
 7
 8 bool cmp(int a,int b)
 9 {
10     return a > b;
11 }
12
13 struct node
14 {
15     vector<int> child;
16 };
17
18 node Tree[100100];
19
20 int MIN = 100100;
21 int cnt = 0;
22 void DFS(int root,int level)
23 {
24     if(Tree[root].child.empty())
25     {
26         if( level < MIN)
27         {
28             MIN = level;
29             cnt = 1;
30         }
31         else if (level == MIN)
32             ++cnt;
33     }
34     else
35     {
36         for(int i = 0 ; i < Tree[root].child.size();++i)
37             DFS(Tree[root].child[i],level+1);
38     }
39 }
40
41 int main()
42 {
43     int n,num,tem;
44     double pri,rate;
45     scanf("%d%lf%lf",&n,&pri,&rate);
46     vector<int> vv;
47     for(int i = 0 ;i < n ;++i)
48     {
49         scanf("%d",&num);
50         for(int k = 0 ;k <num ;++k)
51         {
52             scanf("%d",&tem);
53             Tree[i].child.push_back(tem);
54         }
55     }
56
57     DFS(0,0);
58
59     printf("%.4lf %d\n",pri * pow((100.0+rate)/100.0,MIN),cnt);
60
61     return 0;
62 }
时间: 2024-09-30 19:06:55

1106. Lowest Price in Supply Chain (25)的相关文章

[建树(非二叉树)] 1106. Lowest Price in Supply Chain (25)

1106. Lowest Price in Supply Chain (25) 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 buy

1106. Lowest Price in Supply Chain (25)【树+深搜】——PAT (Advanced Level) Practise

题目信息 1106. Lowest Price in Supply Chain (25) 时间限制200 ms 内存限制65536 kB 代码长度限制16000 B A supply chain is a network of retailers(零售商), distributors(经销商), and suppliers(供应商)– everyone involved in moving a product from supplier to customer. Starting from on

PAT 甲级 1106 Lowest Price in Supply Chain (25分) (bfs)

1106 Lowest Price in Supply Chain (25分)   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 b

PAT (Advanced Level) 1106. Lowest Price in Supply Chain (25)

简单dfs #include<cstdio> #include<cstring> #include<cmath> #include<vector> #include<map> #include<queue> #include<stack> #include<algorithm> using namespace std; const int maxn=100000+10; vector<int>g[m

1106 Lowest Price in Supply Chain

大致题意就是给出一棵树,求出叶子结点的最小权值,并输出该叶子节点的个数. 这是一道模板题,我近期做的几乎都是模板题.我现在认为 树与二叉树 是对 图 的一种严格约束,并且“二叉树,树,图”使用邻接表的存储结构比较多. 1 #include<iostream> 2 #include<vector> 3 #include<map> 4 using namespace std; 5 6 const int maxn = 100010; 7 vector<int>

1090. Highest Price in Supply Chain (25)【树】——PAT (Advanced Level) Practise

题目信息 1090. Highest Price in Supply Chain (25) 时间限制200 ms 内存限制65536 kB 代码长度限制16000 B A supply chain is a network of retailers(零售商), distributors(经销商), and suppliers(供应商)– everyone involved in moving a product from supplier to customer. Starting from o

pat1090. Highest Price in Supply Chain (25)

1090. Highest Price in Supply Chain (25) 时间限制 200 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

A1090. Highest Price in Supply Chain (25)

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 pric

1090. Highest Price in Supply Chain (25)

时间限制 200 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 supplie