# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
298132 | eriksuenderhauf | Monochrome Points (JOI20_monochrome) | C++17 | 0 ms | 0 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
const int N = 2e5 + 5;
int a[2*N];
ll dp[N];
ll solve(int n, int i) {
//if (dp[i] != 0)
// return dp[i];
int ptr[2] = {i+n, i+n}, cnt[4] = {0, 0, 0, 0};
// auto next = [&](int& j) {
// j = j+1 < 2*n ? j+1 : j+1-2*n;
// };
#define next(x) x = x+1 < 2*n ? x+1 : x+1-2*n
ll val = 0;
for (int j = i, c = a[i]; j < i+n; c = a[++j]) {
while (ptr[c] != i && a[ptr[c]] == c)
cnt[c+2]++, next(ptr[c]);
next(ptr[c]);
val += min(cnt[c+2], cnt[c^1]) + cnt[c]++;
}
return dp[i] = val;
}
mt19937 rng(chrono::steady_clock::now().time_since_epoch().count());
int get(int l, int r) {
return uniform_int_distribution<int>(l, r)(rng);
}
int ord[N];
int main() {
ios_base::sync_with_stdio(false); cin.tie(0);
auto cur_t = clock();
int n; cin >> n;
string s; cin >> s;
for (int i = 0; i < 2*n; i++)
a[i] = s[i] == 'B', ord[i] = i;
shuffle(ord, ord+n, rng);
ll ans = 0;
while (clock() - cur_t < 1994000)
ans = max(ans, solve(n, ord[i]));
cout << ans << "\n";
}