#include<bits/stdc++.h>
using namespace std;
#include "walk.h"
long long min_distance(std::vector<int> x, std::vector<int> h, std::vector<int> l, std::vector<int> r, std::vector<int> y, int s, int g) {
const long long n = (long long)x.size();
const long long m = (long long)l.size();
vector<set<long long>>v(n);
v[g].insert(0);
set<pair<long long,pair<long long,long long>>>connected;
for(long long i = 0 ; i < m ; i++) {
if(m == 0) break;
for(long long ii = l[i] ; ii <= r[i] ; ii++) {
if(ii < r[i])
connected.insert({y[i], {ii, ii+1}});
v[ii].insert(y[i]);
}
}
map<pair<long long,long long>,long long>dist;
priority_queue<pair<long long,pair<long long,long long>>>pq;
pq.push({0,{s,0}});
while(!pq.empty()) {
auto node = pq.top();
pq.pop();
auto [i,y] = node.second;
if(i > 0 && v[i-1].count(y) && connected.count({y, {i-1,i}})) {
if((!dist.count({i-1,y}) || dist[{i,y}] + i - x[i-1] < dist[{i-1,y}])) {
dist[{i-1,y}] = dist[{i,y}] + x[i] - x[i-1];
pq.push({-dist[{i-1,y}], {i-1, y}});
}
}
if(i < n-1 && v[i+1].count(y) && connected.count({y, {i,i+1}})) {
if((!dist.count({i+1,y}) || dist[{i,y}] + x[i+1] - i < dist[{i+1,y}])) {
dist[{i+1,y}] = dist[{i,y}] + x[i+1] - x[i];
pq.push({-dist[{i+1,y}], {i+1, y}});
}
}
for(auto it = v[i].begin() ; it != v[i].end() ; it++) {
long long yy = *it;
if(yy > h[i] || y > h[i])
break;
if(!dist[{i,yy}] || dist[{i,y}] + abs(y - yy) < dist[{i,yy}]) {
dist[{i,yy}] = dist[{i,y}] + abs(y - yy);
pq.push({-dist[{i,yy}], {i, yy}});
}
}
}
if(!dist[{g,0}])
return -1;
return dist[{g,0}];
}
/*
//#include "walk.h"
#include <cstdio>
#include <cassert>
using namespace std;
int main() {
int n, m;
assert(2 == scanf("%d%d", &n, &m));
vector<int> x(n), h(n);
for (int i = 0; i < n; i++)
assert(2 == scanf("%d%d", &x[i], &h[i]));
vector<int> l(m), r(m), y(m);
for (int i = 0; i < m; i++)
assert(3 == scanf("%d%d%d", &l[i], &r[i], &y[i]));
int s, g;
assert(2 == scanf("%d%d", &s, &g));
fclose(stdin);
long long result = min_distance(x, h, l, r, y, s, g);
printf("%lld\n", result);
fclose(stdout);
return 0;
}
*/
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
0 ms |
212 KB |
Output is correct |
2 |
Correct |
0 ms |
212 KB |
Output is correct |
3 |
Incorrect |
1 ms |
212 KB |
Output isn't correct |
4 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
0 ms |
212 KB |
Output is correct |
2 |
Correct |
1 ms |
212 KB |
Output is correct |
3 |
Execution timed out |
4090 ms |
90656 KB |
Time limit exceeded |
4 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Execution timed out |
4062 ms |
9384 KB |
Time limit exceeded |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Execution timed out |
4062 ms |
9384 KB |
Time limit exceeded |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
0 ms |
212 KB |
Output is correct |
2 |
Correct |
0 ms |
212 KB |
Output is correct |
3 |
Incorrect |
1 ms |
212 KB |
Output isn't correct |
4 |
Halted |
0 ms |
0 KB |
- |