# | TimeUTC-0 | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
333323 | keko37 | Restore Array (RMI19_restore) | C++14 | 346 ms | 748 KiB |
This submission is migrated from previous version of oj.uz, which used different machine for grading. This submission may have different result if resubmitted.
#include<bits/stdc++.h>
using namespace std;
typedef long long llint;
typedef pair <int, int> pi;
const int MAXN = 5005;
const int MAXM = 10005;
int n, m;
int from[MAXM], to[MAXM], w[MAXM];
int dist[MAXN];
bool relax () {
bool ok = 0;
for (int i = 0; i < m; i++) {
if (dist[to[i]] > dist[from[i]] + w[i]) {
dist[to[i]] = dist[from[i]] + w[i];
ok = 1;
}
}
for (int i = 1; i <= n; i++) {
if (dist[i] < dist[i - 1]) {
dist[i - 1] = dist[i];
ok = 1;
}
if (dist[i] > dist[i - 1] + 1) {
dist[i] = dist[i - 1] + 1;
ok = 1;
# | 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... |