結果
問題 | No.1812 Uribo Road |
ユーザー | ytft |
提出日時 | 2022-02-13 18:48:42 |
言語 | C++23 (gcc 12.3.0 + boost 1.83.0) |
結果 |
MLE
|
実行時間 | - |
コード長 | 1,842 bytes |
コンパイル時間 | 3,116 ms |
コンパイル使用メモリ | 260,044 KB |
実行使用メモリ | 813,536 KB |
最終ジャッジ日時 | 2024-06-29 05:44:47 |
合計ジャッジ時間 | 7,437 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,816 KB |
testcase_01 | AC | 2 ms
6,816 KB |
testcase_02 | AC | 2 ms
6,944 KB |
testcase_03 | AC | 188 ms
18,932 KB |
testcase_04 | AC | 2 ms
6,940 KB |
testcase_05 | AC | 2 ms
6,944 KB |
testcase_06 | AC | 2 ms
6,944 KB |
testcase_07 | AC | 4 ms
6,940 KB |
testcase_08 | AC | 295 ms
26,748 KB |
testcase_09 | AC | 656 ms
48,704 KB |
testcase_10 | AC | 224 ms
24,408 KB |
testcase_11 | AC | 101 ms
12,244 KB |
testcase_12 | MLE | - |
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 | -- | - |
ソースコード
#include <bits/stdc++.h> using namespace std; struct directedGraph{ int N; vector<int> edgesValue; vector<vector<int>> edges; directedGraph(int n){ N=n; } void addEdge(int a,int b,int value=0){ edges.emplace_back((vector<int>){a,b}); edgesValue.emplace_back(value); } vector<vector<int>> getConnection(){ vector<vector<int>> ret(N,vector<int>(0)); for(vector<int> v:edges){ ret[v[0]].emplace_back(v[1]); } return ret; } vector<int> dijkstra(int start){ vector<int> ret(N,-1); vector<vector<int>> next(N,vector<int>(0)),weight(N,vector<int>(0)); for(int i=edges.size()-1;i>=0;--i){ next[edges[i][0]].emplace_back(edges[i][1]); weight[edges[i][0]].emplace_back(edgesValue[i]); } auto comp=[](vector<int> a,vector<int> b){return a[1]>b[1];}; priority_queue<vector<int>,vector<vector<int>>,decltype(comp)> que{comp}; que.push((vector<int>){start,0}); while(!que.empty()){ vector<int> temp=que.top(); if(ret[temp[0]]==-1){ ret[temp[0]]=temp[1]; for(int i=next[temp[0]].size()-1;i>=0;--i){ que.push((vector<int>){next[temp[0]][i],temp[1]+weight[temp[0]][i]}); } } que.pop(); } return ret; } }; int main(){ int N,M,K,R,A,B,C; cin>>N>>M>>K; directedGraph G(N*(1<<K)); vector<int> mask(M,0); for(int i=0;i<K;++i){ cin>>R; mask[R-1]=1<<i; } for(int i=0;i<M;++i){ cin>>A>>B>>C; for(int j=0;j<(1<<K);++j){ G.addEdge(A-1+j*N,B-1+(j|mask[i])*N,C); G.addEdge(B-1+j*N,A-1+(j|mask[i])*N,C); } } cout<<G.dijkstra(0)[N*(1<<K)-1]<<endl; }