# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
224213 | mieszko11b | 치료 계획 (JOI20_treatment) | C++14 | 999 ms | 524292 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
using ii = pair<int, int>;
using ll = long long;
using pll = pair<ll, ll>;
const ll INF = 1e18;
#define X first
#define Y second
int n, m;
vector<ii> P;
vector<ii> G[1500007];
ll dist[1500007];
int add_point(int x, int y) {
P.emplace_back(x, y);
return P.size() - 1;
}
void add_edges(vector<int> &F, vector<int> &T) {
if(F.empty() || T.empty())
return ;
for(int f : F)
for(int t : T)
if(P[t].X >= P[f].X && P[t].Y <= P[f].Y)
G[f].emplace_back(t, 0);
}
ll dijkstra() {
ll res = INF;
set<pll> S;
for(int i = 0 ; i < P.size() ; i++) {
if(P[i].Y - P[i].X == 0) {
dist[i] = 0;
S.insert({0, i});
} else
dist[i] = INF;
}
while(!S.empty()) {
auto p = *(S.begin());
S.erase(S.begin());
for(auto p2 : G[p.Y]) {
if(dist[p2.X] > p.X + p2.Y) {
S.erase({dist[p2.X], p2.X});
dist[p2.X] = p.X + p2.Y;
S.insert({dist[p2.X], p2.X});
}
}
}
for(int i = 0 ; i < P.size() ; i++)
if(P[i].Y - P[i].X == n * 2)
res = min(res, dist[i]);
return res;
}
int main() {
scanf("%d%d", &n, &m);
vector<int> F, T;
for(int i = 0 ; i < m ; i++) {
int t, l, r, c;
scanf("%d%d%d%d", &t, &l, &r, &c);
l--;
F.push_back(add_point(t - r, t + r));
T.push_back(add_point(t - l, t + l));
G[T.back()].emplace_back(F.back(), c);
}
sort(F.begin(), F.end());
sort(T.begin(), T.end());
add_edges(F, T);
ll hlp;
printf("%lld\n", (hlp = dijkstra()) == INF ? -1 : hlp);
return 0;
}
컴파일 시 표준 에러 (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... |