Graph Theory trainning-part-1 E. Invitation cards

Source: Internet
Author: User
E. invitation cardstime limit: 8000 msmemory limit: 262144kb64-bit integer Io format: % LLD Java class name: main in the age of television, not necessarily people attend theater installed CES. antique comedians of malidinesia are aware of this fact. they want to propagate theater and, most of all, antique comedies. they have printed invitation cards with all the necessary information and with the Programme. A lot of students were hired to distribute these invitations among the people. each student volunteer has assigned exactly one bus stop and he or she stays there the whole day and gives invitation to people traveling by bus. A special course was taken where students learned how to influence people and what is the difference between influencing and robbery.

The transport system is very special: All lines are unidirectional and connect exactly two stops. buses leave the originating stop with passangers each half an hour. after reaching the destination stop they return empty to the originating stop, where they wait until the next full half an hour, e.g. x: 00 or X: 30, where 'x' denotes the hour. the parameter for transport between two stops is given by special tables and is payable on the spot. the lines are planned in such a way, that each round trip (I. e. A journey starting and finishing at the same stop) passes through a central checkpoint stop (CCS) where each passenger has to pass a thorough check including body scan.

All the ACM student members leave the CCS each morning. each volunteer is to move to one predetermined stop to invite passengers. there are as follows volunteers as stops. at the end of the day, all students travel back to CCS. you are to write a computer program that helps ACM to minimize the amount of money to pay every day for the transport of their employees.
Inputthe input consists of n cases. the first line of the input contains only positive integer n. then follow the cases. each case begins with a line containing exactly two integers p and q, 1 <= p, q <= 1000000. P is the number of stops including CCS and Q the number of bus lines. then there are Q lines, each describing one bus line. each of the lines contains exactly three numbers-the originating stop, the destination stop and the price. the CCS is designated by number 1. prices are positive integers the sum of which is smaller than 1000000000. you can also assume it is always possible to get from any stop to any other stop. outputfor each case, print one line containing the minimum amount of money to be paid each day by ACM for the travel costs of its volunteers. sample Input
22 21 2 132 1 334 61 2 102 1 601 3 203 4 102 4 54 1 50
Sample output
46210

Problem-solving: spfa is no doubt. Of course, Dijkstra optimized with priority queue is also acceptable. Bellman-Ford directly TLE. There is a big pitfall in this question. When using the single-source shortest path algorithm, make sure that the INF is large enough. It is better to be larger than the maximum value of Int. Otherwise, it will be hard to figure out wa all the time.

 

 1 #include <iostream> 2 #include <cstdio> 3 #include <cstring> 4 #include <cmath> 5 #include <algorithm> 6 #include <climits> 7 #include <vector> 8 #include <queue> 9 #include <cstdlib>10 #include <string>11 #include <set>12 #define LL long long13 #define INF 0xffffffff14 using namespace std;15 const int maxn = 1000005;16 struct arc {17     int to,w;18 };19 int u[maxn],v[maxn],w[maxn],n,m;20 LL d[maxn];21 vector<arc>g[maxn];22 queue<int>qu;23 bool used[maxn];24 void spfa() {25     int i,j;26     for(i = 2; i <= n; i++)27         d[i] = INF;28     d[1] = 0;29     memset(used,false,sizeof(used));30     while(!qu.empty()) qu.pop();31     qu.push(1);32     used[1] = true;33     while(!qu.empty()) {34         int temp = qu.front();35         used[temp] = false;36         qu.pop();37         for(i = 0; i < g[temp].size(); i++) {38             j = g[temp][i].to;39             if(d[j] > d[temp]+g[temp][i].w) {40                 d[j] = d[temp]+g[temp][i].w;41                 if(!used[j]) {42                     qu.push(j);43                     used[j] = true;44                 }45             }46         }47     }48 }49 int main() {50     int t;51     scanf("%d",&t);52     while(t--) {53         int i,j;54         scanf("%d%d",&n,&m);55         for(i = 1; i <= n; i++)56             g[i].clear();57         for(i = 1; i <= m; i++) {58             scanf("%d%d%d",u+i,v+i,w+i);59             g[u[i]].push_back((arc) {v[i],w[i]});60         }61         LL ans = 0;62         spfa();63         for(i = 1; i <= n; i++){64             ans += d[i];65             g[i].clear();66         }67         for(i = 1; i <= m; i++)68             g[v[i]].push_back((arc) {u[i],w[i]});69         spfa();70         for(i = 2; i <= n; i++)71             ans += d[i];72         printf("%I64d\n",ans);73     }74     return 0;75 }
View code

 

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.