【最短路】【STL】CSU 1808 地铁 (2016湖南省第十二届大学生计算机程序设计竞赛)

题目链接:

  http://acm.csu.edu.cn/OnlineJudge/problem.php?id=1808

题目大意:

  N个点M条无向边(N,M<=105),每条边属于某一条地铁Ci(Ci<=109),每条边有一个耗时,如果乘Ci号线地铁到达一个节点换乘Cj号线地铁离开,还需要花费|Ci-Cj|时间。

  求1到n的最小花费时间。

题目思路:

  【最短路】【STL】

  d[u][Ci]表示从1到u,最后一条地铁是Ci号线的最小耗时。按照边做,每条边枚举上一个是从哪一条地铁坐过来的,更新答案。最终统计到达n时最后是哪一号线地铁。

  由于Ci很大,需要开STL的set存下到每个点可能的地铁号线,map存d[u][Ci]。

  1 //
  2 //by coolxxx
  3 //#include<bits/stdc++.h>
  4 #include<iostream>
  5 #include<algorithm>
  6 #include<string>
  7 #include<iomanip>
  8 #include<map>
  9 #include<stack>
 10 #include<queue>
 11 #include<set>
 12 #include<bitset>
 13 #include<memory.h>
 14 #include<time.h>
 15 #include<stdio.h>
 16 #include<stdlib.h>
 17 #include<string.h>
 18 //#include<stdbool.h>
 19 #include<math.h>
 20 #define min(a,b) ((a)<(b)?(a):(b))
 21 #define max(a,b) ((a)>(b)?(a):(b))
 22 #define abs(a) ((a)>0?(a):(-(a)))
 23 #define lowbit(a) (a&(-a))
 24 #define sqr(a) ((a)*(a))
 25 #define swap(a,b) ((a)^=(b),(b)^=(a),(a)^=(b))
 26 #define mem(a,b) memset(a,b,sizeof(a))
 27 #define eps (1e-8)
 28 #define J 10000
 29 #define mod 1000000007
 30 #define MAX 0x7f7f7f7f
 31 #define PI 3.14159265358979323
 32 #define N 100004
 33 #define M 200004
 34 using namespace std;
 35 typedef long long LL;
 36 int cas,cass;
 37 int n,m,lll,ans;
 38 int last[N],q[N];
 39 LL aans;
 40 bool u[N];
 41 set<int>c[N];
 42 map<int,LL>d[N];
 43 struct xxx
 44 {
 45     int next,to,dd,co;
 46 }a[M];
 47 void add(int x,int y,int c,int z)
 48 {
 49     a[++lll].to=y;
 50     a[lll].dd=z;
 51     a[lll].co=c;
 52     a[lll].next=last[x];
 53     last[x]=lll;
 54 }
 55 void spfa()
 56 {
 57     int i,j,k,now,to,l=0,r=1;
 58     set<int>::iterator ii;
 59     q[1]=1;
 60     for(ii=c[1].begin();ii!=c[1].end();ii++)d[1][(*ii)]=0;
 61     while(l!=r)
 62     {
 63         now=q[l=(l+1)%N];
 64         if(now==n)continue;
 65         u[now]=0;
 66         for(i=last[now];i;i=a[i].next)
 67         {
 68             to=a[i].to;
 69             if(d[to].find(a[i].co)==d[to].end())
 70                 d[to][a[i].co]=MAX;
 71             for(ii=c[now].begin();ii!=c[now].end();ii++)
 72             {
 73                 if(d[now].find((*ii))==d[now].end())continue;
 74                 if(d[now][(*ii)]+a[i].dd+abs((*ii)-a[i].co)>aans)continue;
 75                 if(d[now][(*ii)]+a[i].dd+abs((*ii)-a[i].co)<d[to][a[i].co])
 76                 {
 77                     d[to][a[i].co]=d[now][(*ii)]+a[i].dd+abs((*ii)-a[i].co);
 78                     if(to==n)
 79                     {
 80                         aans=min(aans,d[to][a[i].co]);
 81                         continue;
 82                     }
 83                     if(!u[to])
 84                     {
 85                         u[to]=1;
 86                         q[r=(r+1)%N]=to;
 87                     }
 88                 }
 89             }
 90         }
 91     }
 92 }
 93 int main()
 94 {
 95     #ifndef ONLINE_JUDGE
 96 //    freopen("1.txt","r",stdin);
 97 //    freopen("2.txt","w",stdout);
 98     #endif
 99     int i,j,k;
100     int x,y,z;
101 //    for(scanf("%d",&cass);cass;cass--)
102 //    for(scanf("%d",&cas),cass=1;cass<=cas;cass++)
103 //    while(~scanf("%s",s+1))
104     while(~scanf("%d",&n))
105     {
106         for(i=1;i<=n;i++)
107         {
108             c[i].clear();
109             d[i].clear();
110         }
111         mem(last,0);mem(u,0);lll=0;
112         scanf("%d",&m);
113         for(i=1;i<=m;i++)
114         {
115             scanf("%d%d%d%d",&x,&y,&j,&z);
116             add(x,y,j,z);
117             add(y,x,j,z);
118             c[x].insert(j);c[y].insert(j);
119         }
120         aans=100000000000000;
121         spfa();
122         printf("%lld\n",aans);
123     }
124     return 0;
125 }
126 /*
127 //
128
129 //
130 */

时间: 2024-11-05 21:54:14

【最短路】【STL】CSU 1808 地铁 (2016湖南省第十二届大学生计算机程序设计竞赛)的相关文章

【数学】CSU 1810 Reverse (2016湖南省第十二届大学生计算机程序设计竞赛)

题目链接: http://acm.csu.edu.cn/OnlineJudge/problem.php?id=1810 题目大意: 一个长度为N的十进制数,R(i,j)表示将第i位到第j位翻转过来后的数字,求mod 109+7 题目思路: [数学] 这题换一种思路,看每个数字能够对答案的贡献情况.(可以手推01,10,001,010,100.....,也可以像我一样写个暴力打个10以内的表看看规律) 现在先考虑位置为i的数字为1的情况(最后乘上这个数字就行).可以发现贡献是对称的(第i位的1和第

【模拟】【数学】CSU 1803 2016 (2016湖南省第十二届大学生计算机程序设计竞赛)

题目链接: http://acm.csu.edu.cn/OnlineJudge/problem.php?id=1803 题目大意: 给定n,m(n,m<=109)1<=i<=n,1<=j<=m,求i*j%2016=0的方案数. 题目思路: [模拟][数学] 按照%2016的余数分类.每增加一个2016就又多一种方案.统计是2016的几倍,根据余数分类.最后枚举i,j的余数即可求解. 1 // 2 //by coolxxx 3 //#include<bits/stdc++

【拓扑】【宽搜】CSU 1084 有向无环图 (2016湖南省第十二届大学生计算机程序设计竞赛)

题目链接: http://acm.csu.edu.cn/OnlineJudge/problem.php?id=1804 题目大意: 一个有向无环图(DAG),有N个点M条有向边(N,M<=105),每个点有两个值ai,bi(ai,bi<=109),count(i,j)表示从i走到j的方案数. 求mod 109+7的值. 题目思路: [拓扑][宽搜] 首先将式子拆开,每个点I走到点J的d[j]一次就加上一次ai,这样一个点被i走到的几次就加上几次ai,相当于count(i,j)*ai,最终只要求

【模拟】CSU 1807 最长上升子序列~ (2016湖南省第十二届大学生计算机程序设计竞赛)

题目链接: http://acm.csu.edu.cn/OnlineJudge/problem.php?id=1807 题目大意: 给你一个长度为N(N<=105)的数列,数列中的0可以被其他数字替换,最终形成一个1~N的排列,求这个排列的最长上升子序列长度为N-1的方案数. 题目思路: [模拟] 这道题需要分类讨论. 首先可以肯定,一个长度为n的序列最长上升子序列长度为n-1(最长下降子序列长度为2),那么这个序列的样子是1~n从小到大排列后其中一个数字挪到其余数字中间(错位) 一个长度为L的

2016年湖南省第十二届大学生计算机程序设计竞赛---Parenthesis(线段树求区间最值)

原题链接 http://acm.csu.edu.cn/OnlineJudge/problem.php?id=1809 Description Bobo has a balanced parenthesis sequence P=p1 p2…pn of length n and q questions. The i-th question is whether P remains balanced after pai and pbi  swapped. Note that questions ar

CSU 1803 2016(同余公式)2016年湖南省第十二届大学生计算机程序设计竞赛

题意给出正整数 n 和 m,统计满足以下条件的正整数对 (a,b) 的数量:1. 1 ≤ a ≤ n, 1 ≤ b ≤ m;2. a×b 是 2016 的倍数. 样例输入32 632016 20161000000000 1000000000 样例输出1305767523146895502644 思路由同余公式可得a * b % 2016 = (a % 2016) * (b % 2016) % 2016所以如果 x*y 是2016的倍数的话,那么(2016*k + x)*y也是那么只需要统计1-n

湖南省第十二届大学生计算机程序设计竞赛 problem A 2016

如果 a * b % 2016 == 0 如果a = 1 ,且 a * b % 2016 == 0 考虑一下a = 2017的时候 2017 * b = (2016 + 1) * b % 2016 == 0必定成立 那么就是说1中搭配成的b,2017一样能搭配. 同样:4033 * b = (2016 + 2016 + 1) * b % 2016 == 0必定成立 所以,我可以枚举[1,2016]中[1,2016]中,i * j % 2016 == 0的对数,然后乘上对应的[1,n]中有i这个数

2016年湖南省第十二届大学生计算机程序设计竞赛Problem A 2016 找规律归类

Problem A: 2016 Time Limit: 5 Sec  Memory Limit: 128 MB Description 给出正整数 n 和 m,统计满足以下条件的正整数对 (a,b) 的数量: 1. 1≤a≤n,1≤b≤m; 2. a×b 是 2016 的倍数. Input 输入包含不超过 30 组数据. 每组数据包含两个整数 n,m (1≤n,m≤109). Output 对于每组数据,输出一个整数表示满足条件的数量. Sample Input 32 63 2016 2016

湖南省第十二届大学生计算机程序设计竞赛 A 2016

1803: 2016 Description 给出正整数 n 和 m,统计满足以下条件的正整数对 (a,b) 的数量: 1. 1≤a≤n,1≤b≤m; 2. a×b 是 2016 的倍数. Input 输入包含不超过 30 组数据. 每组数据包含两个整数 n,m (1≤n,m≤109). Output 对于每组数据,输出一个整数表示满足条件的数量. Sample Input 32 63 2016 2016 1000000000 1000000000 Sample Output 1 30576 7