이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
void just_do_it();
int main() {
#ifdef KAMIRULEZ
freopen("kamirulez.inp", "r", stdin);
freopen("kamirulez.out", "w", stdout);
#endif
ios_base::sync_with_stdio(0);
cin.tie(0);
just_do_it();
return 0;
}
struct edge {
int v, a, b;
edge(int _v, int _a, int _b): v(_v), a(_a), b(_b) {};
};
const int maxn = 2e5 + 20;
const int inf = 1e9 + 20;
vector<edge> adj[maxn];
int lt[maxn];
int rt[maxn];
bool flag[maxn];
bool dfs(int u, int x) {
if (x < lt[u]) {
return false;
}
if (x > rt[u]) {
return true;
}
flag[u] = true;
for (auto e: adj[u]) {
if (x >= e.a) {
if (flag[e.v] || dfs(e.v, min(inf - 1, x + e.b))) {
flag[u] = false;
rt[u] = min(x, inf - 1);
return true;
}
}
}
flag[u] = false;
lt[u] = x + 1;
return false;
}
void just_do_it() {
int n, m;
cin >> n >> m;
for (int i = 0; i < m; i++) {
int u, v, a, b;
cin >> u >> v >> a >> b;
adj[u].emplace_back(v, a, b);
}
for (int i = 1; i <= n; i++) {
lt[i] = 0;
rt[i] = inf;
}
for (int i = 1; i <= n; i++) {
while (lt[i] < rt[i]) {
dfs(i, (lt[i] + rt[i]) / 2);
}
if (lt[i] == inf) {
cout << -1 << " ";
}
else {
cout << lt[i] << " ";
}
}
}
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |