結果
問題 | No.2805 Go to School |
ユーザー | kwm_t |
提出日時 | 2024-07-12 21:56:56 |
言語 | C++23 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 270 ms / 2,000 ms |
コード長 | 2,214 bytes |
コンパイル時間 | 3,203 ms |
コンパイル使用メモリ | 264,012 KB |
実行使用メモリ | 27,800 KB |
最終ジャッジ日時 | 2024-07-16 01:39:22 |
合計ジャッジ時間 | 8,297 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,812 KB |
testcase_01 | AC | 2 ms
6,940 KB |
testcase_02 | AC | 2 ms
6,944 KB |
testcase_03 | AC | 2 ms
6,944 KB |
testcase_04 | AC | 89 ms
18,432 KB |
testcase_05 | AC | 103 ms
12,216 KB |
testcase_06 | AC | 63 ms
8,948 KB |
testcase_07 | AC | 49 ms
8,064 KB |
testcase_08 | AC | 78 ms
11,904 KB |
testcase_09 | AC | 61 ms
8,320 KB |
testcase_10 | AC | 47 ms
7,680 KB |
testcase_11 | AC | 239 ms
24,596 KB |
testcase_12 | AC | 129 ms
14,908 KB |
testcase_13 | AC | 176 ms
18,496 KB |
testcase_14 | AC | 24 ms
6,944 KB |
testcase_15 | AC | 2 ms
6,940 KB |
testcase_16 | AC | 2 ms
6,940 KB |
testcase_17 | AC | 2 ms
6,944 KB |
testcase_18 | AC | 89 ms
10,824 KB |
testcase_19 | AC | 63 ms
8,988 KB |
testcase_20 | AC | 143 ms
14,868 KB |
testcase_21 | AC | 270 ms
25,988 KB |
testcase_22 | AC | 104 ms
12,672 KB |
testcase_23 | AC | 144 ms
15,328 KB |
testcase_24 | AC | 143 ms
14,896 KB |
testcase_25 | AC | 46 ms
9,948 KB |
testcase_26 | AC | 196 ms
27,800 KB |
testcase_27 | AC | 108 ms
22,708 KB |
testcase_28 | AC | 15 ms
9,984 KB |
testcase_29 | AC | 21 ms
11,136 KB |
testcase_30 | AC | 56 ms
17,344 KB |
testcase_31 | AC | 96 ms
11,392 KB |
testcase_32 | AC | 128 ms
22,108 KB |
testcase_33 | AC | 214 ms
21,936 KB |
testcase_34 | AC | 2 ms
6,940 KB |
testcase_35 | AC | 2 ms
6,940 KB |
testcase_36 | AC | 72 ms
10,112 KB |
testcase_37 | AC | 81 ms
12,672 KB |
testcase_38 | AC | 148 ms
19,720 KB |
ソースコード
#include <bits/stdc++.h> //#include <atcoder/all> using namespace std; //using namespace atcoder; //using mint = modint1000000007; //const int mod = 1000000007; //using mint = modint998244353; //const int mod = 998244353; //const int INF = 1e9; const long long LINF = 1e18; #define rep(i, n) for (int i = 0; i < (n); ++i) #define rep2(i,l,r)for(int i=(l);i<(r);++i) #define rrep(i, n) for (int i = (n) - 1; i >= 0; --i) #define rrep2(i,l,r)for(int i=(r) - 1;i>=(l);--i) #define all(x) (x).begin(),(x).end() #define allR(x) (x).rbegin(),(x).rend() #define P pair<int,int> template<typename A, typename B> inline bool chmax(A & a, const B & b) { if (a < b) { a = b; return true; } return false; } template<typename A, typename B> inline bool chmin(A & a, const B & b) { if (a > b) { a = b; return true; } return false; } int main() { ios::sync_with_stdio(false); cin.tie(nullptr); int n, m, l, st, ed; cin >> n >> m >> l >> st >> ed; struct Edge { int from; int to; int cost; Edge(int from, int to, int cost) :from(from), to(to), cost(cost) {} }; ed += st; vector to(n, vector<Edge>()); vector<bool>t(n); rep(i, m) { int a, b, t; cin >> a >> b >> t; a--, b--; to[a].push_back(Edge(a, b, t)); to[b].push_back(Edge(b, a, t)); } rep(i, l) { int p; cin >> p; p--; t[p] = true; } vector dp(n, vector<long long>(2, LINF)); dp[0][0] = 0; std::priority_queue<std::pair<long long, P>, std::vector<std::pair<long long, P>>, std::greater<std::pair<long long, P>>> pq; pq.push({ 0,{0,0} }); while (!pq.empty()) { auto top = pq.top(); long long cost = top.first; int pos = top.second.first; int flg = top.second.second; pq.pop(); if (dp[pos][flg] < cost) continue; for (auto e : to[pos]) { { long long ncost = cost + e.cost; long long npos = e.to; if (chmin(dp[npos][flg], ncost)) { pq.push({ ncost,{npos,flg} }); } } if (0 == flg && t[pos]) { long long ncost = cost; if (ncost >= ed)continue; chmax(ncost, st); ncost += 1; long long npos = pos; if (chmin(dp[npos][1], ncost)) { pq.push({ ncost,{npos,1} }); } } } } if (dp[n - 1][1] == LINF)dp[n - 1][1] = -1; cout << dp[n - 1][1] << endl; return 0; }