結果
問題 | No.2477 Drifting |
ユーザー | tnakao0123 |
提出日時 | 2024-06-21 14:24:38 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
MLE
|
実行時間 | - |
コード長 | 2,340 bytes |
コンパイル時間 | 1,371 ms |
コンパイル使用メモリ | 87,040 KB |
実行使用メモリ | 559,244 KB |
最終ジャッジ日時 | 2024-06-21 14:24:47 |
合計ジャッジ時間 | 8,101 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 435 ms
54,812 KB |
testcase_01 | AC | 271 ms
36,872 KB |
testcase_02 | AC | 465 ms
47,740 KB |
testcase_03 | AC | 131 ms
17,344 KB |
testcase_04 | AC | 53 ms
14,784 KB |
testcase_05 | AC | 89 ms
14,784 KB |
testcase_06 | MLE | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
ソースコード
/* -*- coding: utf-8 -*- * * 2477.cc: No.2477 Drifting - yukicoder */ #include<cstdio> #include<vector> #include<map> #include<set> #include<queue> #include<algorithm> #include<utility> using namespace std; /* constant */ const int MAX_N = 200000; const int MAX_M = 200000; const int MAX_GN = MAX_N + MAX_M; const int MAX_K = 200000; const long long LINF = 1LL << 62; /* typedef */ using ll = long long; using vi = vector<int>; using pii = pair<int,int>; using vpii = vector<pii>; using vvpii = vector<vpii>; using si = set<int>; using mpii = map<pii,int>; using pli = pair<ll,int>; /* global variables */ int orgs[MAX_GN]; vi exs[MAX_GN]; ll ds[MAX_GN]; /* subroutines */ bool exists(vi &ex, int v) { if (! ex.empty()) { auto vit = lower_bound(ex.begin(), ex.end(), v); return (vit != ex.end() && *vit == v); } return false; } /* main */ int main() { int n, m; scanf("%d%d", &n, &m); vvpii es(n); for (int i = 0; i < m; i++) { int u, v, w; scanf("%d%d%d", &u, &v, &w); u--, v--; es[u].push_back({v, w}); } for (int i = 0; i < n; i++) orgs[i] = i; int gn = n; mpii evs; int k; scanf("%d", &k); while (k--) { int a, b, c; scanf("%d%d%d", &a, &b, &c); a--, b--, c--; auto mit = evs.find({a, b}); int u = -1; if (mit != evs.end()) u = mit->second; else { u = evs[{a, b}] = gn++; orgs[u] = b; } exs[u].push_back(c); } //printf(" gn=%d\n", gn); for (int u = 0; u < gn; u++) sort(exs[u].begin(), exs[u].end()); vvpii nbrs(gn); for (int u = 0; u < gn; u++) { int ou = orgs[u]; for (auto [v, w]: es[ou]) { if (exists(exs[u], v)) continue; auto mit = evs.find({ou, v}); if (mit != evs.end()) v = mit->second; nbrs[u].push_back({v, w}); } } es.clear(); evs.clear(); for (int i = 0; i < gn; i++) exs[i].clear(); fill(ds, ds + gn, LINF); ds[0] = 0; priority_queue<pli> q; q.push({0, 0}); ll mind = LINF; while (! q.empty()) { auto [ud, u] = q.top(); q.pop(); ud = -ud; if (ds[u] != ud) continue; if (u == n - 1) { mind = ud; break; } for (auto [v, w]: nbrs[u]) { ll vd = ud + w; if (ds[v] > vd) { ds[v] = vd; q.push({-vd, v}); } } } printf("%lld\n", (mind < LINF) ? mind : -1LL); return 0; }