CF-1430D String Deletion 题解

题目大意

给你一个字符串,每个回合这个字符串都会将最前面的连续一段删除,但是你能在删除之前任意删除一个字符,问最多可以持续多少回合。

解题思路

首先统计字符串中长度大于2的字符串,并且记住位置。

最优解很简单,如果最前面的字符串连续的长度超过2,则删除其中的任意一个。

如果不连续,则选择删除后面的连续长度超过2的字符串中的一个,如果后面没有,则可以直接退出。

用一个模拟指针表示你选择的字符串即可。

完整代码

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
#include <bits/stdc++.h>
#include <iostream>
#include <cstdio>
#include <queue>
#include <deque>
#include <cstring>
#include <cmath>
#include <stack>
#include <map>
#include <set>
#include <list>
#include <string>
#include <vector>
#include <algorithm>
#include <sstream>
#include <unordered_map>
using namespace std;
#pragma GCC optimize(1)
#pragma GCC optimize(2)
#pragma GCC optimize(3)
#define rep(i,a,n) for (int i=a;i<=n;i++)
#define per(i,a,n) for (int i=a;i>=n;i--)
#define pb push_back
#define mp make_pair
#define fi first
#define se second
#define pll pair<ll,ll>
#define pii pair<int,int>
#define bg begin
#define rbg rbegin
#define ed end
#define endl '\n'
#define dbg(x) cout << #x << "===" << x << endl
typedef double db;
typedef long long ll;
typedef unsigned long long ull;

const int N = 2e5 + 5;
int len[N], pos[N];

int gcd(int a, int b) {
return !b ? a : gcd(b, a % b);
}

ll qpow(ll a, ll b, ll mod) {
ll ans = 1;
while (b) {
if (b & 1) ans = (ans * a) % mod;
a = (a * a) % mod, b >>= 1;
}
return ans % mod;
}

int main() {
ios::sync_with_stdio(0);
cin.tie(0); cout.tie(0);
//freopen("D:\\测试用\\in.txt", "r", stdin);
//freopen("D:\\测试用\\out.txt", "w+", stdout);
int t; cin >> t;
while (t--) {
int n; cin >> n;
string s; cin >> s;
int sum = 1, cnt1 = 0,cnt2 = 0;
char f = s[0];
rep(i, 1, s.length() - 1) {
if (s[i] == f) sum++;
else {
if (sum > 1) pos[cnt2++] = cnt1;
len[cnt1++] = sum;
f = s[i];
sum = 1;
}
}
if (sum > 1) pos[cnt2++] = cnt1;
len[cnt1++] = sum;
int t = 0, ans = 0;
rep(i, 0, cnt1 - 1) {
if (len[i] > 1) t++;
else {
if (t == cnt2) {
ans += (cnt1 - i + 1) / 2;
break;
}
len[pos[t]]--;
if (len[pos[t]] == 1) t++;
}
ans++;
}
cout << ans << endl;
}
return 0;
}
  • 版权声明: 本博客所有文章除特别声明外,著作权归作者所有。转载请注明出处!
  • © 2015-2021 sakurakarma
  • Powered by Hexo Theme Ayer
  • PV: UV:

请我喝杯咖啡吧~

支付宝
微信