Submission #767424

#TimeUsernameProblemLanguageResultExecution timeMemory
767424PurpleCrayonChorus (JOI23_chorus)C++17
16 / 100
45 ms5396 KiB
#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--) { int prv = MOD; if (l == 0) prv = (k == 1 ? 0 : MOD); else prv = dp[l-1][k-1]; dp[i][k] = min(dp[i][k], COST(l, i) + prv); } int l = small[i]; if (l <= i) { int prv = MOD; if (l == 0) prv = (k == 1 ? 0 : MOD); else prv = dp[l-1][k-1]; dp[i][k] = min(dp[i][k], prv + prv); } } } cout << dp[n-1][K] << '\n'; } int main() { ios::sync_with_stdio(false); cin.tie(0); int T = 1; // cin >> T; while (T--) solve(); }

Compilation message (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 timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...