# | Submission time | Handle | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
1026886 | 2024-07-18T12:59:19 Z | Zicrus | Sky Walking (IOI19_walk) | C++17 | 4000 ms | 11336 KB |
#include <bits/stdc++.h> #include "walk.h" using namespace std; typedef long long ll; ll min_distance(vector<int> x, vector<int> h, vector<int> l, vector<int> r, vector<int> y, int s, int t) { int N = x.size(), M = y.size(); vector<pair<int, int>> pos; vector<vector<int>> adj; for (int j = 0; j < M; j++) { vector<int> buildings; for (int i = l[j]; i <= r[j]; i++) { if (y[j] <= h[i]) { buildings.push_back(x[i]); } } int g = adj.size(); for (auto &e : buildings) { vector<int> a; int id = g - 1; for (auto &c : buildings) { id++; if (e == c) continue; a.push_back(id); } adj.push_back(a); pos.push_back({e, y[j]}); } } adj.push_back({}); adj.push_back({}); pos.push_back({x[s], 0}); pos.push_back({x[t], 0}); vector<bool> vst(pos.size()); vector<ll> dist(pos.size()); priority_queue<pair<int, int>> q; dist[pos.size()-2] = 0; q.push({0, pos.size()-2}); while (!q.empty()) { int node = q.top().second; q.pop(); if (vst[node]) continue; vst[node] = true; vector<int> ac = adj[node]; for (int i = 0; i < pos.size(); i++) { if (i == node) continue; if (pos[i].first == pos[node].first) ac.push_back(i); } for (auto &e : ac) { dist[e] = min(dist[e], dist[node] + abs(pos[node].first - pos[e].first) + abs(pos[node].second - pos[e].second)); q.push({-dist[e], e}); } } return dist.back(); }
Compilation message
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Incorrect | 0 ms | 348 KB | Output isn't correct |
2 | Halted | 0 ms | 0 KB | - |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Incorrect | 0 ms | 348 KB | Output isn't correct |
2 | Halted | 0 ms | 0 KB | - |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Execution timed out | 4059 ms | 11336 KB | Time limit exceeded |
2 | Halted | 0 ms | 0 KB | - |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Execution timed out | 4059 ms | 11336 KB | Time limit exceeded |
2 | Halted | 0 ms | 0 KB | - |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Incorrect | 0 ms | 348 KB | Output isn't correct |
2 | Halted | 0 ms | 0 KB | - |