Submission #717704

#TimeUsernameProblemLanguageResultExecution timeMemory
717704hafoCrocodile's Underground City (IOI11_crocodile)C++14
0 / 100
4 ms5012 KiB
#include <bits/stdc++.h> #define ll long long #define ull unsigned ll #define pb push_back #define pa pair<int, int> #define pall pair<ll, int> #define fi first #define se second #define TASK "test" #define all(x) x.begin(), x.end() using namespace std; template<typename T1, typename T2> bool mini (T1 &a, T2 b) {if(a > b) a = b; else return 0; return 1;} template<typename T1, typename T2> bool maxi (T1 &a, T2 b) {if(a < b) a = b; else return 0; return 1;} const int MOD = 1e9 + 7; const int LOG = 20; const int maxn = 2e5 + 7; const ll oo = 1e17 + 69; int n, m, r[maxn][2], l[maxn], k, p[maxn]; pair<ll, ll> f[maxn]; vector<pa> g[maxn]; struct state { pair<ll, ll> cost; int u; friend bool operator < (state a, state b) { return (a.cost.se != a.cost.se ? a.cost.se > b.cost.se:a.cost.fi > b.cost.fi); } }; int travel_plan(int n, int m, int r[][2], int l[], int k, int p[]) { priority_queue<state, vector<state>> q; fill_n(f, n, make_pair(oo, oo)); for(int i = 0; i < k; i++) { f[p[i]] = {0, 0}; q.push({f[p[i]], p[i]}); } for(int i = 0; i < m; i++) { int u = r[i][0], v = r[i][1]; g[u].pb({v, l[i]}); g[v].pb({u, l[i]}); } while(!q.empty()) { int u = q.top().u; auto fu = q.top().cost; q.pop(); if(fu != f[u]) continue; for(auto e:g[u]) { int v = e.fi, w = e.se; auto cur = f[v]; if(cur.fi > fu.se + w) { cur.se = f[v].fi; cur.fi = fu.se + w; } else if(cur.se > fu.se + w) { cur.se = fu.se + w; } if(f[v].se > cur.se) { f[v] = cur; q.push({f[v], v}); } else if(f[v].se == cur.se && f[v].fi > cur.fi) { f[v] = cur; q.push({f[v], v}); } } } return f[0].se; }

Compilation message (stderr)

crocodile.cpp: In function 'bool operator<(state, state)':
crocodile.cpp:29:27: warning: self-comparison always evaluates to false [-Wtautological-compare]
   29 |         return (a.cost.se != a.cost.se ? a.cost.se > b.cost.se:a.cost.fi > b.cost.fi);
      |                           ^~
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...