# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
416388 | schse | 전선 연결 (IOI17_wiring) | C++17 | 53 ms | 6064 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#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(2, vector<long long>(b.size() + 1, INT64_MAX));
dp[0][0] = 0;
for (int i = 1; i <= r.size(); i++)
{
for (int e = 0; i + e <= b.size() && e <= 55; e++)
{
dp[(i) % 2][i + e] = min(dp[(i - 1) % 2][i + e - 1],
(e - 0 ? dp[(i - 0) % 2][i + e - 1] : INT64_MAX),
(i - 1 ? dp[(i - 1) % 2][i + e - 0] : INT64_MAX)) +
abs((ll)r[i - 1] - (ll)b[i + e - 1]);
}
}
return dp[r.size() % 2][b.size()];
}
컴파일 시 표준 에러 (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... |