#include <bits/stdc++.h>
#define PB push_back
using namespace std;
struct El {
int to, w;
El(int cel, int suly) {
w=suly;
to=cel;
}
El() { }
const bool operator< (El masik) const {
return w<masik.w;
}
};
const int maxn=500005;
vector<El> graf[maxn];
int d[maxn];
bool volte[maxn];
int main()
{
ios_base::sync_with_stdio(false);
cin.tie(0);
int n, m, q;
cin>>n>>m>>q;
for(int i=0;i<m;i++) {
int u, v, w;
cin>>u>>v>>w;
u--; v--;
graf[u].PB(El(v,w));
graf[v].PB(El(u,w));
}
El kezdo(0,INT_MAX);
priority_queue<El> kovi;
kovi.push(kezdo);
while(!kovi.empty()) {
El akt=kovi.top();
kovi.pop();
if(!volte[akt.to]) {
volte[akt.to]=true;
d[akt.to]=akt.w;
for(El s:graf[akt.to]) {
s.w=min(s.w,akt.w);
if(!volte[s.to] && (d[s.to]==0 || d[s.to]>s.w)) {
kovi.push(s);
}
}
}
}
vector<int> sol;
for(int i=0;i<q;i++) {
int z;
cin>>z;
z--;
sol.push_back(d[z]);
}
for(int d:sol) {
cout<<d<<endl;
}
return 0;
}
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
11 ms |
12152 KB |
Output is correct |
2 |
Correct |
10 ms |
12260 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
12 ms |
12468 KB |
Output is correct |
2 |
Correct |
12 ms |
12468 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
59 ms |
14704 KB |
Output is correct |
2 |
Correct |
51 ms |
14704 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Execution timed out |
3535 ms |
131244 KB |
Time limit exceeded |
2 |
Halted |
0 ms |
0 KB |
- |