日韩性视频-久久久蜜桃-www中文字幕-在线中文字幕av-亚洲欧美一区二区三区四区-撸久久-香蕉视频一区-久久无码精品丰满人妻-国产高潮av-激情福利社-日韩av网址大全-国产精品久久999-日本五十路在线-性欧美在线-久久99精品波多结衣一区-男女午夜免费视频-黑人极品ⅴideos精品欧美棵-人人妻人人澡人人爽精品欧美一区-日韩一区在线看-欧美a级在线免费观看

歡迎訪問 生活随笔!

生活随笔

當前位置: 首頁 > 编程资源 > 编程问答 >内容正文

编程问答

Codeforces 773D Perishable Roads 最短路 (看题解)

發布時間:2023/11/30 编程问答 37 豆豆
生活随笔 收集整理的這篇文章主要介紹了 Codeforces 773D Perishable Roads 最短路 (看题解) 小編覺得挺不錯的,現在分享給大家,幫大家做個參考.

Perishable Roads

智商題, 不會啊。。?

貼個官方題解

https://codeforces.com/blog/entry/51883

#include<bits/stdc++.h> #define LL long long #define LD long double #define ull unsigned long long #define fi first #define se second #define mk make_pair #define PLL pair<LL, LL> #define PLI pair<LL, int> #define PII pair<int, int> #define SZ(x) ((int)x.size()) #define ALL(x) (x).begin(), (x).end() #define fio ios::sync_with_stdio(false); cin.tie(0);using namespace std;const int N = 2000 + 7; const int inf = 0x3f3f3f3f; const LL INF = 0x3f3f3f3f3f3f3f3f; const int mod = 1e9 + 7; const double eps = 1e-8; const double PI = acos(-1);template<class T, class S> inline void add(T &a, S b) {a += b; if(a >= mod) a -= mod;} template<class T, class S> inline void sub(T &a, S b) {a -= b; if(a < 0) a += mod;} template<class T, class S> inline bool chkmax(T &a, S b) {return a < b ? a = b, true : false;} template<class T, class S> inline bool chkmin(T &a, S b) {return a > b ? a = b, true : false;}int n, mine = inf, G[N][N], d[N]; bool vis[N];int main() {scanf("%d", &n);for(int i = 1; i <= n; i++) {for(int j = i + 1; j <= n; j++) {scanf("%d", &G[i][j]);G[j][i] = G[i][j];chkmin(mine, G[i][j]);}}for(int i = 1; i <= n; i++) {for(int j = i + 1; j <= n; j++) {G[i][j] -= mine;G[j][i] -= mine;}}for(int i = 1; i <= n; i++) {d[i] = inf;for(int j = 1; j <= n; j++) {if(i != j) {chkmin(d[i], G[i][j] << 1);}}}d[0] = inf;for(int i = 1; i <= n; i++) {int p = 0;for(int j = 1; j <= n; j++) {if(!vis[j] && d[j] < d[p]) {p = j;}}for(int j = 1; j <= n; j++) {chkmin(d[j], d[p] + G[p][j]);}vis[p] = true;}for(int i = 1; i <= n; i++) printf("%lld\n", 1LL * (n - 1) * mine + d[i]);return 0; }/* */

?

轉載于:https://www.cnblogs.com/CJLHY/p/11098059.html

總結

以上是生活随笔為你收集整理的Codeforces 773D Perishable Roads 最短路 (看题解)的全部內容,希望文章能夠幫你解決所遇到的問題。

如果覺得生活随笔網站內容還不錯,歡迎將生活随笔推薦給好友。