| # | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
|---|---|---|---|---|---|---|---|
| 830596 | RaresFelix | Robot (JOI21_ho_t4) | C++17 | 200 ms | 24600 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
using ll = long long;
const ll INF = 1e18;
const int MN = 100001;
int n, m;
struct Edge {
int cul, cost, dest;
};
vector<Edge> L[MN];
vector<pair<int, ll> > G[MN]; /// nod, cost
ll Cost[MN];
int main() {
cin >> n >> m;
for(int i = 1; i <= m; ++i) {
int u, v, c, w;
cin >> u >> v >> c >> w;
L[u].push_back({c, w, v});
L[v].push_back({c, w, u});
}
for(int i = 1; i <= n; ++i) {
sort(L[i].begin(), L[i].end(), [&](auto a, auto b) {
return a.cul < b.cul;
});
for(int j = 0; j < L[i].size(); ++j) {
if((j == 0 || L[i][j - 1].cul != L[i][j].cul) &&
(j == ((int)L[i].size() - 1) || L[i][j + 1].cul != L[i][j].cul)) {
G[i].push_back(make_pair(L[i][j].dest, 0));
} else {
G[i].push_back(make_pair(L[i][j].dest, L[i][j].cost));
}
}
}
priority_queue<pair<ll, int> > PQ;
PQ.push(make_pair(0ll, 1));
for(int i = 1; i <= n; ++i) Cost[i] = INF;
Cost[1] = 0;
while(!PQ.empty()) {
ll nod = PQ.top().second, cost = - PQ.top().first;
PQ.pop();
if(Cost[nod] != cost) continue;
for(auto [it, w] : G[nod]) {
if(Cost[it] > Cost[nod] + w) {
Cost[it] = Cost[nod] + w;
PQ.push(make_pair(-Cost[it], it));
}
}
}
if(Cost[n] == INF) {
// cout << "-1\n";
} else {
cout << Cost[n] << "\n";
}
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... | ||||
