Submission #322165

#TimeUsernameProblemLanguageResultExecution timeMemory
322165sochoSightseeing (NOI14_sightseeing)C++14
15 / 25
3595 ms262144 KiB
#include <bits/stdc++.h> using namespace std; void fast() { ios_base::sync_with_stdio(false); cin.tie(0); cout.tie(0); } void ran() { srand(chrono::steady_clock::now().time_since_epoch().count()); } long long get_rand() { long long a = rand(); long long b = rand(); return a * (RAND_MAX + 1ll) + b; } void usaco() { freopen("problem.in", "r", stdin); freopen("problem.out", "w", stdout); } template<typename T> using min_pq = priority_queue<T, vector<T>, greater<T>>; // #define endl '\n' // #define double long double #define int long long // int MOD = 1000 * 1000 * 1000 + 7; // int MOD = 998244353; const int MXN = 500005; int n, m, q; vector<pair<int, pair<int, int>>> edges; int score[MXN]; vector<pair<int, int>> adj[MXN]; int par[MXN]; int parent(int node) { if (par[node] == node) return node; return par[node] = parent(par[node]); } void connect(int a, int b) { a = parent(a); b = parent(b); par[a] = b; } void dfs(int node, int par, int curr) { score[node] = curr; for (auto x: adj[node]) { if (x.first == par) continue; dfs(x.first, node, min(curr, x.second)); } } signed main() { ran(); fast(); for (int i=0; i<MXN; i++) par[i] = i; cin >> n >> m >> q; for (int i=0; i<m; i++) { int a, b, w; cin >> a >> b >> w; edges.push_back({w, {a, b}}); } sort(edges.begin(), edges.end()); reverse(edges.begin(), edges.end()); for (auto x: edges) { int w = x.first, a = x.second.first, b = x.second.second; if (parent(a) == parent(b)) continue; adj[a].push_back({b, w}); adj[b].push_back({a, w}); connect(a, b); } dfs(1, -1, INT_MAX); for (int i=0; i<q; i++) { int x; cin >> x; cout << score[x] << endl; } }

Compilation message (stderr)

sightseeing.cpp: In function 'void usaco()':
sightseeing.cpp:15:9: warning: ignoring return value of 'FILE* freopen(const char*, const char*, FILE*)', declared with attribute warn_unused_result [-Wunused-result]
   15 |  freopen("problem.in", "r", stdin);
      |  ~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~
sightseeing.cpp:16:9: warning: ignoring return value of 'FILE* freopen(const char*, const char*, FILE*)', declared with attribute warn_unused_result [-Wunused-result]
   16 |  freopen("problem.out", "w", stdout);
      |  ~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...