QOJ.ac

QOJ

ID题目提交者结果用时内存语言文件大小提交时间测评时间
#153124#5647. Another Wine Tasting EventabzcodesTL 2ms3576kbC++171.3kb2023-08-29 13:21:052023-08-29 13:21:06

Judging History

你现在查看的是最新测评结果

  • [2023-08-29 13:21:06]
  • 评测
  • 测评结果:TL
  • 用时:2ms
  • 内存:3576kb
  • [2023-08-29 13:21:05]
  • 提交

answer

#include <bits/stdc++.h>
using namespace std;

#define sz(x) (int)(x).size()
#define pb push_back
#define f first
#define s second
#define lb lower_bound
#define ub upper_bound
#define all(x) begin(x), end(x)
#define ins insert

constexpr int mxN = 1e6 + 1;
int whites[2*mxN];
void solve() {
	int n; cin >> n;
	string S; cin >> S;
	
	for (int i = 0; i < 2*n - 1; i++) {
		if (i > 0) whites[i] = whites[i - 1];
		whites[i] += S[i] == 'W';
	}
	
	auto check = [&](int w) -> bool {
		long long count = 0;
		for (int i = 0; i < 2*n - 1; i++) {
			int v = whites[i];
			auto llidx = ub(whites, whites+2*n-1, v) - whites;
			auto ll = llidx - i;
			if (S[i] != 'W') {
				ll++;
			} else ll = 1;
			int need = v + w - (S[i] == 'W');
			auto rr = ub(whites, whites+2*n-1, need);
			auto rrl = lb(whites, whites+2*n-1, need);
			long long diff = rr - rrl;
			if (diff == 0) continue;
			
			diff = max(diff, 1LL);
			
			count += ll*1LL*diff;
			if (count >= n) return true;
			i = llidx - (S[i] == 'W');
		}
		return false;
	};
	int ans = 0;
	int l = 1;
	int r = n+1;
	while (l <= r) {
		int m = l + ((r - l) /2);
		
		if (check(m)) {
			ans = max(ans, m);
			l = m + 1;
		} else r = m - 1;
	}
	cout << ans << '\n';
}

int main() {
  ios_base::sync_with_stdio(0); cin.tie(0);
  solve();
  return 0;
}

詳細信息

Test #1:

score: 100
Accepted
time: 1ms
memory: 3576kb

input:

5
RWWRRRWWW

output:

2

result:

ok At least n intervals

Test #2:

score: 0
Accepted
time: 2ms
memory: 3556kb

input:

1
R

output:

0

result:

ok At least n intervals

Test #3:

score: -100
Time Limit Exceeded

input:

1000000
WWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWW...

output:


result: