結果
問題 | No.17 2つの地点に泊まりたい |
ユーザー | ry0u_yd |
提出日時 | 2015-08-29 20:19:46 |
言語 | C++11 (gcc 11.4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,782 bytes |
コンパイル時間 | 949 ms |
コンパイル使用メモリ | 78,620 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-07-18 15:36:31 |
合計ジャッジ時間 | 1,927 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
6,812 KB |
testcase_01 | AC | 2 ms
6,940 KB |
testcase_02 | AC | 1 ms
6,944 KB |
testcase_03 | AC | 17 ms
6,940 KB |
testcase_04 | AC | 5 ms
6,940 KB |
testcase_05 | AC | 54 ms
6,944 KB |
testcase_06 | AC | 27 ms
6,940 KB |
testcase_07 | AC | 16 ms
6,944 KB |
testcase_08 | AC | 106 ms
6,944 KB |
testcase_09 | AC | 105 ms
6,940 KB |
testcase_10 | AC | 41 ms
6,944 KB |
testcase_11 | AC | 67 ms
6,940 KB |
testcase_12 | AC | 1 ms
6,944 KB |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | AC | 43 ms
6,940 KB |
testcase_24 | AC | 50 ms
6,940 KB |
testcase_25 | AC | 2 ms
6,940 KB |
testcase_26 | AC | 81 ms
6,944 KB |
ソースコード
#include <iostream> #include <vector> #include <string> #include <cstring> #include <algorithm> #include <sstream> #include <map> #include <set> #include <queue> #define REP(i,k,n) for(int i=k;i<n;i++) #define rep(i,n) for(int i=0;i<n;i++) #define INF 1<<30 #define pb push_back #define mp make_pair using namespace std; typedef long long ll; typedef pair<int,int> P; struct edge { int from,to; int cost; edge(int t,int c) : to(t),cost(c) {} edge(int f,int t,int c) : from(f),to(t),cost(c) {} bool operator<(const edge &e) const { return cost < e.cost; } }; vector<edge> G[55]; int d[55]; void dijkstra(int s,int n) { priority_queue<P,vector<P>,greater<P> > que; fill(d,d+n,INF); d[s] = 0; que.push(P(0,s)); while(que.size()) { P p = que.top(); que.pop(); int v = p.second; if(d[v] < p.first) continue; rep(i,G[v].size()) { edge e = G[v][i]; if(d[e.to] > d[v] + e.cost) { d[e.to] = d[v] + e.cost; que.push(P(d[e.to],e.to)); } } } } int main() { int n; cin >> n; vector<int> w(n); rep(i,n) cin >> w[i]; int m; cin >> m; rep(i,m) { int a,b,c; cin >> a >> b >> c; G[a].push_back(edge(b,c)); G[b].push_back(edge(a,c)); } int ans = INF; REP(i,1,n-1) { REP(j,1,n-1) { if(i == j) continue; int cost = 0; dijkstra(0,n); cost += d[i]; dijkstra(i,n); cost += d[j]; dijkstra(j,n); cost += d[n-1]; cost += w[i] + w[j]; ans = min(ans,cost); } } cout << ans << endl; return 0; }