# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
596843 | lcj | Sky Walking (IOI19_walk) | C++17 | 46 ms | 23528 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
#define all(x) (x).begin(), (x).end()
#define fi first
#define se second
using namespace std;
typedef long long ll;
typedef pair<ll, ll> pll;
typedef pair<int, int> pii;
long long min_distance(vector<int> x, vector<int> h, vector<int> l, vector<int> r, vector<int> y, int s, int g) {
int n = x.size();
int m = l.size();
vector<vector<pii>> conto(n);
vector<vector<pll>> neighbours(2*m+2);
for (int i = 0; i < m; i++)
{
conto[l[i]].push_back({y[i], i});
conto[r[i]].push_back({y[i], i+m});
neighbours[i].push_back({i+m, x[r[i]]-x[l[i]]});
}
for (int i = 0; i < n; i++)
{
sort(all(conto[i]));
auto &mconto = conto[i];
if (i == s && !mconto.empty()) {
neighbours[2*m].push_back({mconto[0].se, mconto[0].fi});
}
if (i == g && !mconto.empty()) {
neighbours[mconto.back().se].push_back({2*m+1, mconto.back().fi});
}
for (int j = 0; j < conto[i].size()-1; j++)
{
neighbours[mconto[j].se].push_back({mconto[j+1].se, mconto[j+1].fi-mconto[j].fi});
neighbours[mconto[j+1].se].push_back({mconto[j].se, mconto[j+1].fi-mconto[j].fi});
}
}
vector<ll> dist(2*m+2, 1e12);
dist[2*m] = 0;
priority_queue<pll, vector<pll>, greater<pll>> pq;
pq.push({0, 2*m});
while (!pq.empty())
{
pll cur = pq.top();pq.pop();
if (cur.fi > dist[cur.se]) continue;
for (pll nn : neighbours[cur.se]) {
if (dist[nn.fi] > cur.fi + nn.se) {
dist[nn.fi] = cur.fi + nn.se;
pq.push({dist[nn.fi], nn.fi});
}
}
}
if (dist[2*m+1] == 1e12) {
return -1;
}
return dist[2*m+1];
}
컴파일 시 표준 에러 (stderr) 메시지
# | 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... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |