CodeForces 20C

这题有一点坑,用d[N]int的话会上溢 所以要用long long

 1 #include <iostream>
 2 #include <string.h>
 3 #include <queue>
 4 #include <vector>
 5 #include <utility>
 6 #include <cstdio>
 7 using namespace std;
 8 #define N 100005
 9 #define M 400005
10 typedef long long LL;
11 const LL inf = 1<<62;
12 LL v[M],w[M],next[M],first[N],d[N],e;
13 int f[N],o[N];
14 bool inq[N];
15 void addedge(int a,int b,int x){
16     v[e]=b;
17     w[e]=x;
18     next[e]=first[a];
19     first[a]=e++;
20 }
21 void SPFA(int st){
22     queue<int> q;
23     d[st]=0;
24     q.push(st);
25     inq[st]=1;
26     f[1]=-1;
27     while(!q.empty()){
28         int u = q.front();
29         q.pop();
30         inq[u] = 0;
31         for(int i=first[u];i!=-1;i=next[i]){
32             if(d[v[i]]>d[u]+w[i]){
33                 d[v[i]]=d[u]+w[i];
34                 f[v[i]]=u;
35                 if(!inq[v[i]]){
36                     q.push(v[i]);
37                     inq[v[i]]=1;
38                 }
39             }
40         }
41     }
42 }
43 int main(){
44     int n,m,a,b,x;
45    // freopen("test.txt","r",stdin);
46     while(cin>>n>>m){
47         e=0;
48         for(int i=0;i<=n;i++){
49             first[i]=-1;
50             inq[i]=false;
51             d[i]=inf;
52         }
53         for(int i=0;i<m;i++){
54             cin>>a>>b>>x;
55             addedge(a,b,x);
56             addedge(b,a,x);
57         }
58         SPFA(1);
59         if(d[n]==inf)cout<<"-1"<<endl;
60         else {
61             int r=0;
62             for(int i=f[n];i!=-1;i=f[i]){
63                 o[r]=i;
64                 r++;
65             }
66             for(int i=r;i>0;i--){
67                 printf("%d ",o[i-1]);
68             }
69             printf("%d\n",n);
70         }
71     }
72     return 0;
73 }

CodeForces 20C

时间: 2024-11-06 19:55:05

CodeForces 20C的相关文章

暑期测试训练3

1.Codeforces 20C spfa算法的简单题,在这个过程中多了一个记录连接最短路径上的前一个节点的位置的数组,然后将这个数组逆向输出 在这道题目中,我路径数组范围居然忘记*2了,结果一直报错,找了好久,%>_<% #include <iostream> #include <cstdio> #include <queue> #include <cstring> using namespace std; #define N 100010 #

CSU-ACM暑假集训基础组七夕专场

•Problem A Codeforces 20C       最短路(dij,spfa) •题意:给出一张n个点m条边的无向图 (2 ≤ n ≤ 105, 0 ≤ m ≤ 105),输出从1到n的任意一条最短路径. •解法:dijkstra或者spfa,用pre数组记录到达每个点最短距离的前驱结点. •注意:路径的长度范围是 1 ≤ wi ≤ 106,从1到n的最短路径长度可能超出int范围. •没有路径从1到达n时要输出-1 1 #include <cstdio> 2 #include &

CodeForces 【20C】Dijkstra?

解题思路 heap+Dijkstra就能过.注意边是双向边,要用long long. 附上代码 #include <iostream> #include <queue> #include <cstdio> #include <cstring> #include <algorithm> using namespace std; typedef pair<long long, int> P; priority_queue<P, ve

【codeforces 718E】E. Matvey&#39;s Birthday

题目大意&链接: http://codeforces.com/problemset/problem/718/E 给一个长为n(n<=100 000)的只包含‘a’~‘h’8个字符的字符串s.两个位置i,j(i!=j)存在一条边,当且仅当|i-j|==1或s[i]==s[j].求这个无向图的直径,以及直径数量. 题解:  命题1:任意位置之间距离不会大于15. 证明:对于任意两个位置i,j之间,其所经过每种字符不会超过2个(因为相同字符会连边),所以i,j经过节点至多为16,也就意味着边数至多

Codeforces 124A - The number of positions

题目链接:http://codeforces.com/problemset/problem/124/A Petr stands in line of n people, but he doesn't know exactly which position he occupies. He can say that there are no less than a people standing in front of him and no more than b people standing b

Codeforces 841D Leha and another game about graph - 差分

Leha plays a computer game, where is on each level is given a connected graph with n vertices and m edges. Graph can contain multiple edges, but can not contain self loops. Each vertex has an integer di, which can be equal to 0, 1 or  - 1. To pass th

Codeforces Round #286 (Div. 1) A. Mr. Kitayuta, the Treasure Hunter DP

链接: http://codeforces.com/problemset/problem/506/A 题意: 给出30000个岛,有n个宝石分布在上面,第一步到d位置,每次走的距离与上一步的差距不大于1,问走完一路最多捡到多少块宝石. 题解: 容易想到DP,dp[i][j]表示到达 i 处,现在步长为 j 时最多收集到的财富,转移也不难,cnt[i]表示 i 处的财富. dp[i+step-1] = max(dp[i+step-1],dp[i][j]+cnt[i+step+1]) dp[i+st

Codeforces 772A Voltage Keepsake - 二分答案

You have n devices that you want to use simultaneously. The i-th device uses ai units of power per second. This usage is continuous. That is, in λ seconds, the device will use λ·ai units of power. The i-th device currently has bi units of power store

Educational Codeforces Round 21 G. Anthem of Berland(dp+kmp)

题目链接:Educational Codeforces Round 21 G. Anthem of Berland 题意: 给你两个字符串,第一个字符串包含问号,问号可以变成任意字符串. 问你第一个字符串最多包含多少个第二个字符串. 题解: 考虑dp[i][j],表示当前考虑到第一个串的第i位,已经匹配到第二个字符串的第j位. 这样的话复杂度为26*n*m*O(fail). fail可以用kmp进行预处理,将26个字母全部处理出来,这样复杂度就变成了26*n*m. 状态转移看代码(就是一个kmp