이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include<bits/stdc++.h>
#define taskname "A"
using namespace std;
void World_Final();
void Solve();
int main(){
ios_base::sync_with_stdio(false); cin.tie(nullptr);
if (fopen(taskname".in", "r")) {
freopen(taskname".in", "r", stdin);
freopen(taskname".out", "w", stdout);
}
World_Final();
}
void World_Final(){
int Tests = 1;
//cin >> Tests;
for (int i = 1; i <= Tests; i ++) {
//cout << i << "\n";
Solve();
}
}
const int MAXN = 2e5 + 10;
const int64_t INF = 1e18;
int N, M;
struct Road {
int v, c, p;
Road (int _v, int _c, int _p) : v(_v), c(_c), p(_p) {};
}; vector<Road> G[MAXN]; pair<int, int> par[MAXN]; int64_t f[MAXN]; multiset<int> color[MAXN];
void Solve(){
cin >> N >> M;
for (int i = 1; i <= M; i ++) {
int u, v, c, p; cin >> u >> v >> c >> p;
G[u].push_back(Road(v, c, p));
G[v].push_back(Road(u, c, p));
color[u].insert(c);
color[v].insert(c);
}
for (int i = 1; i <= N; i ++) f[i] = INF;
f[1] = 0;
priority_queue<pair<int64_t, int>> pq; pq.push(make_pair(0, 1));
map<int64_t, int> sum;
while (!pq.empty()) {
int64_t d; int u; tie(d, u) = pq.top(); pq.pop();
if (-d != f[u]) continue;
sum.clear();
for (auto [v, c, p] : G[u]) {
sum[c] += p;
}
for (auto [v, c, p] : G[u]) {
int cnt = color[u].count(c) - (par[u].first == c);
int w = min(p, sum[c] - p - (par[u].first == c ? par[u].second : 0));
if (cnt <= 1) w = 0;
if (f[v] > f[u] + w) {
f[v] = f[u] + w;
pq.push(make_pair(-f[v], v));
par[v] = make_pair(c, p);
}
}
}
cout << (f[N] == INF ? -1 : f[N]);
}
컴파일 시 표준 에러 (stderr) 메시지
Main.cpp: In function 'int main()':
Main.cpp:11:16: warning: ignoring return value of 'FILE* freopen(const char*, const char*, FILE*)' declared with attribute 'warn_unused_result' [-Wunused-result]
11 | freopen(taskname".in", "r", stdin);
| ~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~
Main.cpp:12:16: warning: ignoring return value of 'FILE* freopen(const char*, const char*, FILE*)' declared with attribute 'warn_unused_result' [-Wunused-result]
12 | freopen(taskname".out", "w", stdout);
| ~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |