結果
問題 | No.17 2つの地点に泊まりたい |
ユーザー | Han Lin |
提出日時 | 2023-02-24 03:48:08 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 795 bytes |
コンパイル時間 | 1,688 ms |
コンパイル使用メモリ | 167,948 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-07-23 19:36:12 |
合計ジャッジ時間 | 2,737 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
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 | WA | - |
testcase_24 | WA | - |
testcase_25 | WA | - |
testcase_26 | WA | - |
ソースコード
#include <bits/stdc++.h> using namespace std; const int N = 50 + 10; const int inf = 1000000000; int g[N][N]; int s[N]; int main() { int n, m, u, v, w; cin >> n; for (int i=1; i<=n; i++) cin >> s[i]; for (int i=1; i<=n; i++) { for (int j=1; j<=n; j++) { if (i == j) g[i][j] = 0; else g[i][j] = inf; } } cin >> m; for (int i=0; i<m; i++) { cin >> u >> v >> w; g[u][v] = g[v][u] = min(g[u][v], w); } for (int k=1; k<=n; k++) { for (int i=1; i<=n; i++) { for (int j=1; j<=n; j++) g[i][j] = min(g[i][j], g[i][k] + g[k][j]); } } int res = inf; for (int i=2; i<n-1; i++) { for (int j=i+1; j<n; j++) { res = min(res, g[1][i] + s[i] + g[i][j] + s[j] + g[j][n]); res = min(res, g[1][j] + s[j] + g[j][i]+ s[i] + g[i][n]); } } cout << res << endl; return 0; }