結果
問題 | No.1812 Uribo Road |
ユーザー | erbowl |
提出日時 | 2022-07-24 17:44:19 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 1,472 bytes |
コンパイル時間 | 2,235 ms |
コンパイル使用メモリ | 223,220 KB |
実行使用メモリ | 336,884 KB |
最終ジャッジ日時 | 2024-07-06 12:29:07 |
合計ジャッジ時間 | 9,507 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
6,812 KB |
testcase_01 | AC | 2 ms
6,944 KB |
testcase_02 | AC | 1 ms
6,940 KB |
testcase_03 | AC | 12 ms
6,940 KB |
testcase_04 | AC | 1 ms
6,940 KB |
testcase_05 | AC | 2 ms
6,944 KB |
testcase_06 | AC | 1 ms
6,944 KB |
testcase_07 | AC | 2 ms
6,944 KB |
testcase_08 | AC | 23 ms
6,940 KB |
testcase_09 | AC | 46 ms
6,944 KB |
testcase_10 | AC | 17 ms
6,944 KB |
testcase_11 | AC | 9 ms
6,944 KB |
testcase_12 | TLE | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
testcase_26 | -- | - |
testcase_27 | -- | - |
testcase_28 | -- | - |
testcase_29 | -- | - |
testcase_30 | -- | - |
testcase_31 | -- | - |
testcase_32 | -- | - |
testcase_33 | -- | - |
ソースコード
typedef long long ll; typedef long double ld; #include <bits/stdc++.h> using namespace std; #define int long long ll k; ll cpos(ll e, ll bin){ return (e<<k)+bin; } signed main(){ ll n,m; std::cin >> n>>m>>k; vector<ll> r(k); map<ll,ll> rr; for (int i = 0; i < k; i++) { std::cin >> r[i]; r[i]--; rr[r[i]]=i; } vector<vector<tuple<ll,ll,ll>>> edges(n); for (int i = 0; i < m; i++) { ll a,b,c; std::cin >> a>>b>>c; a--;b--; edges[a].push_back({i, b,c}); edges[b].push_back({i, a,c}); } vector<ll> d(n<<k,1e18); d[0] = 0; priority_queue<pair<ll,ll>,vector<pair<ll,ll>>,greater<pair<ll,ll>>> pq; pq.push({0,0}); while(!pq.empty()){ auto [dis, pos] = pq.top();pq.pop(); ll bin = ((1<<k)-1)&pos; if(d[pos]<dis)continue; for (auto e : edges[pos>>k]) { auto [ind, nex, cost] = e; if(rr.find(ind)!=rr.end()){ if(d[cpos(nex, bin|(1<<rr[ind]))]>dis+cost){ d[cpos(nex, bin|(1<<rr[ind]))] = dis+cost; pq.push({dis+cost, cpos(nex, bin|(1<<rr[ind]))}); } }else{ if(d[cpos(nex, bin)] > dis+cost){ d[cpos(nex, bin)] = dis+cost; pq.push({dis+cost, cpos(nex,bin)}); } } } } std::cout << d[cpos(n-1, (1<<k)-1)] << std::endl; }