# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
622599 | cheissmart | Sky Walking (IOI19_walk) | C++14 | 25 ms | 7892 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "walk.h"
#include <bits/stdc++.h>
#define F first
#define S second
#define V vector
#define MP make_pair
#define EB emplace_back
#define PB push_back
#define SZ(v) int((v).size())
#define ALL(v) (v).begin(), (v).end()
using namespace std;
typedef long long ll;
typedef pair<int, int> pi;
typedef V<int> vi;
const int INF = 1e9 + 7, N = 1e5 + 7;
const ll oo = 1e18;
vi asr[N], asl[N];
ll min_distance(vi x, vi h, vi l, vi r, vi y, int s, int g) {
int n = SZ(x);
if(s != 0 || g != n - 1) return 0LL;
int m = SZ(l);
for(int i = 0; i < m; i++) {
asl[l[i]].PB(y[i]);
asr[r[i]].PB(y[i]);
}
map<int, ll> mp;
mp[0] = 0;
asr[0].PB(0);
for(int i = 0; i < n; i++) {
set<int> no;
for(int yy:asl[i]) {
no.insert(yy);
auto it = mp.lower_bound(yy);
ll d = oo;
if(it != mp.end())
d = min(d, it -> S + abs(yy - it -> F));
if(it != mp.begin()) {
it--;
d = min(d, it -> S + abs(yy - it -> F));
}
mp[yy] = d;
}
if(i < n - 1) for(int yy:asr[i]) {
if(no.count(yy)) continue;
mp.erase(yy);
}
if(mp.empty()) return -1;
}
ll ans = oo;
for(auto[yy, d]:mp)
ans = min(ans, d + yy);
return ans + x[n - 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... |