답안 #953179

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
953179 2024-03-25T15:54:42 Z pragma 전선 연결 (IOI17_wiring) C++14
0 / 100
1 ms 4696 KB
#include "wiring.h"
#include <bits/stdc++.h>

const int N = 200005;
const long long INFLL = 4000000000000000000LL;

using namespace std;

long long dp[N], f[N], pref[N];
int last[N];

long long min_total_length(vector<int> r, vector<int> b) {
    int nr = r.size(), nb = b.size(), n = nr + nb;
	vector <pair <int, int>> v;
	for (int i = 0; i < nr; i++) {
        v.push_back({r[i], 0});
	}
	for (int i = 0; i < nb; i++) {
        v.push_back({b[i], 1});
	}
	sort(v.begin(), v.end());
	dp[0] = INFLL, pref[0] = v[0].first;
    last[0] = -1;
    for (int i = 1; i < n; i++) {
        dp[i] = INFLL;
        pref[i] = pref[i - 1] + v[i].first;
        last[i] = v[i].second == v[i - 1].second ? last[i - 1] : i - 1;
        for (int j = last[i - 1] + 1; j <= last[i]; j++) {
            f[j] = min(dp[j], f[j - 1] + v[i].first - v[j].first);
        }
        if (last[i] == -1) continue;
        dp[i] = min(dp[i], dp[i - 1] + v[i].first - v[last[i]].first);
        /// last[i]+1 ... i same color
        /// last[last[i]]+1 ... last[i] same color
        if (last[last[i]] < last[i] - (i - last[i]) + 1) {
            dp[i] = min(dp[i], (pref[i] - pref[last[i]]) - (pref[last[i]] - pref[last[i] - (i - last[i])]) + dp[last[i] - (i - last[i])]);
        }
    }
    return dp[n - 1];
}
# 결과 실행 시간 메모리 Grader output
1 Correct 1 ms 4444 KB Output is correct
2 Incorrect 1 ms 4444 KB 3rd lines differ - on the 1st token, expected: '14340', found: '14522'
3 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 1 ms 4696 KB 3rd lines differ - on the 1st token, expected: '904', found: '4000000000000000000'
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Correct 1 ms 4444 KB Output is correct
2 Incorrect 1 ms 4444 KB 3rd lines differ - on the 1st token, expected: '17703', found: '18722'
3 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 1 ms 4696 KB 3rd lines differ - on the 1st token, expected: '27', found: '30'
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Correct 1 ms 4444 KB Output is correct
2 Incorrect 1 ms 4444 KB 3rd lines differ - on the 1st token, expected: '14340', found: '14522'
3 Halted 0 ms 0 KB -