이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
#define sz(v) int(v.size())
#define ar array
typedef long long ll;
const int N = 5e3+10, MOD = 1e9+7;
int n, K, small[N], cost[N][N];
int ps[N], l_use[N];
vector<int> one, two;
int dp[N][N];
void solve() {
cin >> n >> K;
for (int i = 0; i < 2 * n; i++) {
char c; cin >> c;
if (c == 'A') one.push_back(i);
else two.push_back(i);
}
// for (int x : one) cerr << x << ' '; cerr << endl;
// for (int x : two) cerr << x << ' '; cerr << endl;
for (int i = 0; i < n; i++) {
small[i] = lower_bound(two.begin(), two.end(), one[i]) - two.begin();
}
for (int i = 0; i < n; i++) {
ps[i] = small[i] + (i ? ps[i-1] : 0);
l_use[i] = -(i ? ps[i-1] : 0);
for (int j = i; j < n; j++) {
if (small[j] < i) {
l_use[i] -= small[j] - i;
}
}
}
// -l * (r - l + 1) + ps_small[r] - other_ps_small[l-1]
// other_ps_small[l-1] = (small[r] < l ?
// for (int i = 0; i < n; i++) cerr << small[i] << ' ';
// cerr << endl;
for (int l = 0; l < n; l++) {
int cur = 0;
for (int r = l; r < n; r++) {
cur += max(small[r] - l, 0);
cost[l][r] = cur;
}
}
auto COST = [&](int l, int r) {
return ps[r] + l_use[l] - l * (r - l + 1);
};
for (int i = 0; i < n; i++) {
for (int j = i; j < n; j++) {
int one = cost[i][j];
int two = COST(i, j);
assert(one == 0 && two > 0 || one == two);
}
}
for (int i = 0; i < n; i++) for (int j = 0; j <= K; j++) dp[i][j] = MOD;
for (int i = 0; i < n; i++) {
for (int k = 1; k <= K; k++) {
for (int l = i; l >= 0; l--) {
dp[i][k] = min(dp[i][k], COST(l, i) + (l == 0 ? 0 : dp[l-1][k-1]));
}
int l = small[i];
if (l <= i) {
dp[i][k] = min(dp[i][k], (l == 0 ? 0 : dp[l-1][k-1]));
}
}
}
cout << dp[n-1][K] << '\n';
}
int main() {
ios::sync_with_stdio(false); cin.tie(0);
int T = 1;
// cin >> T;
while (T--) solve();
}
컴파일 시 표준 에러 (stderr) 메시지
In file included from /usr/include/c++/10/cassert:44,
from /usr/include/x86_64-linux-gnu/c++/10/bits/stdc++.h:33,
from chorus.cpp:1:
chorus.cpp: In function 'void solve()':
chorus.cpp:60:29: warning: suggest parentheses around '&&' within '||' [-Wparentheses]
60 | assert(one == 0 && two > 0 || one == two);
| ~~~~~~~~~^~~~~~~~~~
# | 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... |