Submission #314988

#TimeUsernameProblemLanguageResultExecution timeMemory
314988VROOM_VARUNCrocodile's Underground City (IOI11_crocodile)C++14
0 / 100
1 ms384 KiB
/* ID: varunra2 LANG: C++ TASK: crocodile */ #include<bits/stdc++.h> using namespace std; #ifdef DEBUG #include "lib/debug.h" #define debug(...) cerr << "[" << #__VA_ARGS__ << "]:", debug_out(__VA_ARGS__) #define debug_arr(...) \ cerr << "[" << #__VA_ARGS__ << "]:", debug_arr(__VA_ARGS__) #pragma GCC diagnostic ignored "-Wsign-compare" //#pragma GCC diagnostic ignored "-Wunused-parameter" //#pragma GCC diagnostic ignored "-Wunused-variable" #else #define debug(...) 42 #endif #define EPS 1e-9 #define IN(A, B, C) assert(B <= A && A <= C) #define INF (int)1e9 #define MEM(a, b) memset(a, (b), sizeof(a)) #define MOD 1000000007 #define MP make_pair #define PB push_back #define all(cont) cont.begin(), cont.end() #define rall(cont) cont.end(), cont.begin() #define x first #define y second const double PI = acos(-1.0); typedef long long ll; typedef long double ld; typedef pair<int, int> PII; typedef map<int, int> MPII; typedef multiset<int> MSETI; typedef set<int> SETI; typedef set<string> SETS; typedef vector<int> VI; typedef vector<PII> VII; typedef vector<VI> VVI; typedef vector<string> VS; #define rep(i, a, b) for(int i = a; i < (b); ++i) #define trav(a, x) for(auto& a : x) #define sz(x) (int)(x).size() typedef pair<int, int> pii; typedef vector<int> vi; #pragma GCC diagnostic ignored "-Wsign-compare" // util functions int travel_plan(int n, int m, int r[][2], int l[], int k, int p[]) { vector<bool> ext(n, false); vector<VII> adj(n); for(int i = 0; i < m; i++) { int u, v, w; u = r[i][0]; v = r[i][1]; w = r[i][2]; adj[u].PB(MP(v, w)); adj[v].PB(MP(u, w)); } for(int i = 0; i < k; i++) { ext[p[i]] = true; } priority_queue<PII, VII, greater<PII>> pq; VI cnt(n, 2); VI dist(n, INF); for(int i = 0; i < n; i++) { if(ext[i]) { pq.push(MP(0, i)); } } VVI dists(n); while(!pq.empty()) { int u, w; u = pq.top().y; w = pq.top().x; pq.pop(); trav(x, adj[u]) { if(sz(dists[x.x]) < 2) dists[x.x].PB(w + x.y); else if(dists[x.x].back() > w + x.y) { dists[x.x].pop_back(); dists[x.x].PB(w + x.y); } if(sz(dists[x.x]) >= 2 and dist[x.x] > dists[x.x].back()) { dist[x.x] = dists[x.x].back(); pq.push(MP(dist[x.x], x.x)); } } } return dists[0].back(); } // int main() { // #ifndef ONLINE_JUDGE // freopen("crocodile.in", "r", stdin); // freopen("crocodile.out", "w", stdout); // #endif // cin.sync_with_stdio(0); cin.tie(0); // return 0; // }
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...