pat1079. Total Sales of Supply Chain (25)

1079. Total Sales of Supply Chain (25)

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

提交代码

BFS。由于数量是long long级别,用DFS会段错误。

 1 #include<cstdio>
 2 #include<algorithm>
 3 #include<iostream>
 4 #include<stack>
 5 #include<vector>
 6 #include<set>
 7 #include<map>
 8 #include<queue>
 9 using namespace std;
10 map<long long,vector<long long> > edge;
11 map<long long,long long> re;
12 int main(){
13     //freopen("D:\INPUT.txt","r",stdin);
14     long long n,i,num,v;
15     double price,r,total=0;
16     scanf("%lld %lf %lf",&n,&price,&r);
17     for(i=0;i<n;i++){
18         scanf("%lld",&num);
19         if(!num){
20             scanf("%lld",&re[i]);
21             continue;
22         }
23         while(num){
24             scanf("%lld",&v);
25             edge[i].push_back(v);
26             num--;
27         }
28     }
29     queue<long long> q;
30     q.push(0);
31     long long cur;
32     long long last,e=0;
33     //last记录当前层不为叶结点的节点
34     if(re.count(0)){//root可能也会直接向顾客出售
35         total+=price*re[0];
36         q.pop();
37     }
38     r=r/100;
39     price*=1+r;//当前下一层向外卖的价格
40     while(!q.empty()){
41         cur=q.front();
42         q.pop();
43         for(i=0;i<edge[cur].size();i++){
44             if(re.count(edge[cur][i])){
45                 total+=price*re[edge[cur][i]];
46                 continue;
47             }
48             q.push(edge[cur][i]);
49             last=edge[cur][i];
50         }
51         if(cur==e){
52             e=last;
53             price*=1+r;
54         }
55     }
56     printf("%.1lf
",total);
57     return 0;
58 }

断错误的DFS。

 1 #include<cstdio>
 2 #include<algorithm>
 3 #include<iostream>
 4 #include<stack>
 5 #include<vector>
 6 #include<set>
 7 #include<map>
 8 using namespace std;
 9 map<long long,vector<long long> > edge;
10 map<long long,long long> re;
11 map<long long,bool> vis;
12 void DFS(long long num,double &total,double price,double r){
13     vis[num]=true;
14     long long i;
15     if(!edge[num].size()){
16 
17         //cout<<num<<endl;
18 
19         total+=re[num]*price;
20         return;
21     }
22     for(i=0;i<edge[num].size();i++){
23         if(!vis[edge[num][i]]){
24             DFS(edge[num][i],total,price*(1+r),r);
25         }
26     }
27 }
28 int main(){
29     //freopen("D:\INPUT.txt","r",stdin);
30     long long n,i,num,v;
31     double price,r,total=0;
32     scanf("%lld %lf %lf",&n,&price,&r);
33     for(i=0;i<n;i++){
34         vis[i]=false;
35         scanf("%lld",&num);
36         if(!num){
37             scanf("%lld",&re[i]);
38             continue;
39         }
40         while(num){
41             scanf("%lld",&v);
42             edge[i].push_back(v);
43             num--;
44         }
45     }
46     DFS(0,total,price,r/100);
47     printf("%.1lf
",total);
48     return 0;
49 }
原文地址:https://www.cnblogs.com/Deribs4/p/4783957.html