結果
問題 | No.17 2つの地点に泊まりたい |
ユーザー | assy1028 |
提出日時 | 2015-03-21 19:10:55 |
言語 | C++11 (gcc 11.4.0) |
結果 |
AC
|
実行時間 | 11 ms / 5,000 ms |
コード長 | 2,019 bytes |
コンパイル時間 | 832 ms |
コンパイル使用メモリ | 93,540 KB |
実行使用メモリ | 6,656 KB |
最終ジャッジ日時 | 2024-10-15 01:20:06 |
合計ジャッジ時間 | 1,778 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,248 KB |
testcase_02 | AC | 2 ms
5,248 KB |
testcase_03 | AC | 4 ms
5,248 KB |
testcase_04 | AC | 3 ms
5,248 KB |
testcase_05 | AC | 8 ms
5,632 KB |
testcase_06 | AC | 6 ms
5,248 KB |
testcase_07 | AC | 4 ms
5,248 KB |
testcase_08 | AC | 11 ms
6,400 KB |
testcase_09 | AC | 11 ms
6,656 KB |
testcase_10 | AC | 6 ms
5,248 KB |
testcase_11 | AC | 8 ms
5,248 KB |
testcase_12 | AC | 2 ms
5,248 KB |
testcase_13 | AC | 2 ms
5,248 KB |
testcase_14 | AC | 1 ms
5,248 KB |
testcase_15 | AC | 2 ms
5,248 KB |
testcase_16 | AC | 2 ms
5,248 KB |
testcase_17 | AC | 2 ms
5,248 KB |
testcase_18 | AC | 3 ms
5,248 KB |
testcase_19 | AC | 2 ms
5,248 KB |
testcase_20 | AC | 2 ms
5,248 KB |
testcase_21 | AC | 1 ms
5,248 KB |
testcase_22 | AC | 4 ms
5,248 KB |
testcase_23 | AC | 8 ms
5,632 KB |
testcase_24 | AC | 7 ms
5,248 KB |
testcase_25 | AC | 2 ms
5,248 KB |
testcase_26 | AC | 10 ms
6,272 KB |
コンパイルメッセージ
main.cpp: In function ‘int main()’: main.cpp:66:10: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 66 | scanf("%d", &n); | ~~~~~^~~~~~~~~~ main.cpp:69:14: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 69 | scanf("%d", &s); | ~~~~~^~~~~~~~~~ main.cpp:80:10: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 80 | scanf("%d", &m); | ~~~~~^~~~~~~~~~ main.cpp:83:14: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 83 | scanf("%d%d%d", &a, &b, &c); | ~~~~~^~~~~~~~~~~~~~~~~~~~~~
ソースコード
#include <algorithm> #include <iostream> #include <cstdio> #include <map> #include <numeric> #include <cmath> #include <set> #include <sstream> #include <string> #include <vector> #include <queue> #include <complex> #include <string.h> #include <unordered_set> #include <unordered_map> using namespace std; #define endl '\n' #define all(v) (v).begin(), (v).end() #define rall(v) (v).rbegin(), (v).rend() #define uniq(v) (v).erase(unique((v).begin(), (v).end()), (v).end()) typedef long long ll; typedef pair<int, int> P; typedef unsigned int uint; typedef unsigned long long ull; struct pairhash { public: template<typename T, typename U> size_t operator()(const pair<T, U> &x) const { size_t seed = hash<T>()(x.first); return hash<U>()(x.second) + 0x9e3779b9 + (seed<<6) + (seed>>2); } }; const int inf = 1000000009; const int MAX = 100*52; struct edge { int to, cost; }; vector<edge> G[MAX]; int d[MAX]; void dijkstra(int s) { priority_queue<P, vector<P>, greater<P> > que; fill(d, d+MAX, inf); d[s] = 0; que.push(P(0, s)); while (!que.empty()) { P p = que.top(); que.pop(); int v = p.second; if (d[v] < p.first) continue; for (int i = 0; i < G[v].size(); i++) { 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; scanf("%d", &n); for (int i = 0; i < n; i++) { int s; scanf("%d", &s); if (0 < i && i < n-1) { G[i].push_back(edge{i+(2*i-1)*n, s}); for (int j = 1; j < n-1; j++) { if (j != i) { G[i+(2*j-1)*n].push_back(edge{i+2*j*n, s}); } } } } int m; scanf("%d", &m); for (int i = 0; i < m; i++) { int a, b, c; scanf("%d%d%d", &a, &b, &c); for (int j = 0; j <= 2*(n-1); j++) { G[a+j*n].push_back(edge{b+j*n, c}); G[b+j*n].push_back(edge{a+j*n, c}); } } dijkstra(0); int res = inf; for (int i = 1; i < n-1; i++) { res = min(res, d[n-1+2*i*n]); } printf("%d\n", res); }