acm algorithm practice 2010 Dec. 26

poj   1125     Stockbroker Grapevine

Input

Your program will input data for different sets of stockbrokers. Each set starts with a line with the number of stockbrokers. Following this is a line for each stockbroker which contains the number of people who they have contact with, who these people are, and the time taken for them to pass the message to each person. The format of each stockbroker line is as follows: The line starts with the number of contacts (n), followed by n pairs of integers, one pair for each contact. Each pair lists first a number referring to the contact (e.g. a '1' means person number one in the set), followed by the time in minutes taken to pass a message to that person. There are no special punctuation symbols or spacing rules. 

Each person is numbered 1 through to the number of stockbrokers. The time taken to pass the message on will be between 1 and 10 minutes (inclusive), and the number of contacts will range between 0 and one less than the number of stockbrokers. The number of stockbrokers will range from 1 to 100. The input is terminated by a set of stockbrokers containing 0 (zero) people. 

 

Output

For each set of data, your program must output a single line containing the person who results in the fastest message transmission, and how long before the last person will receive any given message after you give it to this person, measured in integer minutes. 
It is possible that your program will receive a network of connections that excludes some persons, i.e. some people may be unreachable. If your program detects such a broken network, simply output the message "disjoint". Note that the time taken to pass the message from person A to person B is not necessarily the same as the time taken to pass it from B to A, if such transmission is possible at all.

---------------------------------------------------------------------------------------------

it's a basic dijkstra shortest path problem.

 

dijkstra algorithm :

choose a source vertex and set the its value 0

other vertices are set to infinite 

while(Q != empty){

  pick u = extract-min(Q)

  for each v in adj(u) && v still in Q{

    if(d(v) > d(u) + w(u,v)){

      d(v)= d(u)+w(u,v)

      parent(v) = u   //record

    }

  }

}

 

although it's not complicate, I still feel unfamiliar with the structure of graph. actually, the data structure I use in this problem is quite simple and not practical at all.   however, something in my implementation is still redundant :)......

代码
 
   
struct edge {
int from;
int to; // vertex
int edge_value;
};
struct broker_info {
int num;
int path_value; // value of the vetex
map < int , edge > adjacency; // all the adjecent vertex from this broker
};

map
< int , broker_info > broker1; // the information of this broker

 

another deficiency is that I didn't use heap or F tree store the graph,which makes the time complicity a little bit higher.    

the STL has a heap template:   make_heap()   etc.   

 

mistake : 

initialize,  recall that broker[i] will be changed in every loop of choosing new source vertex

 
  
for ( int i = 1 ; i <= b_num; i ++ ) { // at beginning Q set = 1,2, ... b_num
Q.insert(i);
broker[i]
= broker1[i];
}

 

 

转载于:https://www.cnblogs.com/ggppwx/archive/2010/12/27/1917670.html

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值