This submission is migrated from previous version of oj.uz, which used different machine for grading. This submission may have different result if resubmitted.
#include <iostream>
#include <vector>
#include <queue>
using namespace std;
typedef pair<int, int> ii;
vector<vector<ii > > g;
int main(){
	int N, M, Q; cin>>N>>M>>Q;
	g.assign(N+1, vector<ii >());
	int a, b, c;
	for(int m=0; m<M; m++){
		cin>>a>>b>>c;
		g[a].push_back({b, c});
		g[b].push_back({a, c});
	}
	vector<int> d(N+1, -1e9);
	vector<int> v(N+1, 0);
	d[1] = 1e9;
	priority_queue<ii> q;
	q.push({d[1], 1});
	while(!q.empty()){
		ii t = q.top(); q.pop();
		if(v[t.second])
			continue;
		v[t.second] = true;
		for(int x=0; x<g[t.second].size(); x++){
			if(d[g[t.second][x].first]<min(g[t.second][x].second, t.first)){
				d[g[t.second][x].first] = min(g[t.second][x].second, t.first);
				q.push({d[g[t.second][x].first], g[t.second][x].first});
			}
		}
	}
	for(int q=0; q<Q; q++){
		int a;
		cin>>a;
		cout << d[a] << endl;
	}
	return 0;
}
Compilation message (stderr)
sightseeing.cpp: In function 'int main()':
sightseeing.cpp:30:17: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
   for(int x=0; x<g[t.second].size(); x++){
                ~^~~~~~~~~~~~~~~~~~~| # | Verdict | Execution time | Memory | Grader output | 
|---|
| Fetching results... | 
| # | Verdict | Execution time | Memory | Grader output | 
|---|
| Fetching results... | 
| # | Verdict | Execution time | Memory | Grader output | 
|---|
| Fetching results... | 
| # | Verdict | Execution time | Memory | Grader output | 
|---|
| Fetching results... |