# | Time | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
415797 | schse | Wiring (IOI17_wiring) | C++17 | 1 ms | 332 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>
#ifndef EVAL
#include "grader.cpp"
#endif
#define ll long long
#include "wiring.h"
using namespace std;
ll min(ll a, ll b, ll c)
{
return std::min(a, std::min(b, c));
}
long long min_total_length(std::vector<int> r, std::vector<int> b)
{
vector<vector<long long>> dp(r.size() + 1, vector<long long>(b.size(), 0));
for (int i = 1; i <= r.size(); i++)
{
for (int e = 1; e <= b.size(); e++)
{
dp[i][e] = min(dp[i - 1][e - 1], dp[i][e - 1], dp[i - 1][e]) + abs(r[i-1] - b[e-1]);
}
}
return dp[r.size()][b.size()];
}
Compilation message (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... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |