AtCoder题解 —— AtCoder Regular Contest 108 —— B - Abbreviate Fox

2023-10-09 20:40

本文主要是介绍AtCoder题解 —— AtCoder Regular Contest 108 —— B - Abbreviate Fox,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

题目相关

题目链接

AtCoder Regular Contest 108 B 题,https://atcoder.jp/contests/arc108/tasks/arc108_b。

Problem Statement

Given is a string S of length N consisting of lowercase English letters. Snuke can do this operation any number of times: remove fox occurring as a substring from s and concatenate the remaining parts of s.

What is the minimum possible length of s after some number of operations by Snuke?

Input

Input is given from Standard Input in the following format:

N
s

Output

Print the minimum possible length of s after some number of operations by Snuke.

Samples1

Sample Input 1

6
icefox

Sample Output 1

3

Explaination

By removing the fox at the end of icefox, we can turn s into ice.

Samples2

Sample Input 2

7
firebox

Sample Output 2

7

Explaination

fox does not occur as a substring.

Samples3

Sample Input 3

48
ffoxoxuvgjyzmehmopfohrupffoxoxfofofoxffoxoxejffo

Sample Output 3

27

Constraints

  • 1≤N≤2×10^5
  • s is a string of length N consisting of lowercase English letters.

题解报告

题目翻译

给一个长度 N 和对应长度的字符串 S,snuke 可以执行以下操作任意次:删除子字符串 fox。问最后字符串 s 的长度是多少。

题目分析

看完题目,我觉得可以直接使用 STL 的 string 类中的 find() 和 erase() 函数对字符串直接操作。极限情况下字符串长度就是 2e5,理论上应该可以在 1 秒内完成。

使用 STL 的 string

//https://atcoder.jp/contests/arc108/tasks/arc108_b
//B - Abbreviate Fox
#include <bits/stdc++.h>using namespace std;int main() {
#if 1//这些代码需要提交到OJ,本地调试不使用ios::sync_with_stdio(false);cin.tie(0);cout.tie(0);
#endifint n;string s;cin>>n>>s;size_t pos;while (string::npos != (pos=s.find("fox"))) {s.erase(pos, 3);}cout<<s.length()<<"\n";#if 0//这些代码不需要提交到OJ,本地调试使用system("pause");
#endifreturn 0;
}

结果 AtCoder 测试后的结果如下。

其中,hand_03.txt 使用了 2205ms 超时;random_04.txt 使用了 1218ms;random_06.txt 使用了 1008ms;random_10.txt 使用了 1454ms。看来 erase() 函数的效率一般。

我们必须优化代码,不能使用 string 类了。我们需要一个 O(N) 时间复杂度的算法,也就是自己来遍历字符串,同时对数据进行操作。

算法分析

我们来分类讨论以下每个字符可能性,假设当前字符为 s[i]。

  • s[i] 不是 f、o、x 中的其他小写字符。
  • s[i] 是字符 f。
  • s[i] 是字符 o。
  • s[i] 是字符 x。

为了处理字符方便,我们可以使用浪费空间的方式,也就是多一个 N 长度的空白字符串,用来表示最后生成的字符串,我们记为字符串 t,这样我们可以得出如下结论。

  • s[i] 不是 f、o、x 中的其他小写字符。将字符拷贝到 t 中。即 t[idx++]=s[i]。
  • s[i] 是字符 f。将字符拷贝到 t 中。即 t[idx++]=s[i]。
  • s[i] 是字符 o。将字符拷贝到 t 中。即 t[idx++]=s[i]。
  • s[i] 是字符 x。说明有可能前面的字符构成 fox 字符串,可以删除,因此需要和前面的两个字符进行合并比较。如果是构成 fox 则删除 t 中的数据。如果不构成,拷贝字符到 t 中即可。

这样,我们就将算法的复杂度变成了 O(N)。

其实不删除字符串 t 中的数据也是可以的,只需要控制 idx 指针即可。另外我们发现,对所有的字符都需要将 s[i] 拷贝到 t[idx] 这个位置中,我们可以将情况进一步简化,也就是所有的字符都拷贝到 t[idx] 中,如果碰到字符 x 才向前回溯处理指针。

数据范围估计

N 的最大值为 2e5,因此用 int 可以表达。

AC 参考代码

//https://atcoder.jp/contests/arc108/tasks/arc108_b
//B - Abbreviate Fox
#include <bits/stdc++.h>using namespace std;//如果提交到OJ,不要定义 __LOCAL
//#define __LOCALint main() {
#ifndef __LOCAL//快读代码ios::sync_with_stdio(false);cin.tie(0);cout.tie(0);
#endifint n;string s;cin>>n>>s;string t(n, ' ');int idx=0;int cnt=0;//统计删除几个for (int i=0; i<n; i++) {t[idx++]=s[i];if ('x'==s[i]) {//字符 xif (idx>=3 && 'o'==t[idx-2] && 'f'==t[idx-3]) {idx -= 3;cnt += 3;//删除了 3 个字符}}}cout<<n-cnt<<"\n";#ifdef __LOCAL//本地调试使用system("pause");
#endifreturn 0;
}

不使用 string,而直接使用字符数组,处理速度能更快,我使用 string,只是为了调试方便而已。

时间复杂度

O(N)。

空间复杂度

O(N)。

这篇关于AtCoder题解 —— AtCoder Regular Contest 108 —— B - Abbreviate Fox的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/175432

相关文章

2014 Multi-University Training Contest 8小记

1002 计算几何 最大的速度才可能拥有无限的面积。 最大的速度的点 求凸包, 凸包上的点( 注意不是端点 ) 才拥有无限的面积 注意 :  凸包上如果有重点则不满足。 另外最大的速度为0也不行的。 int cmp(double x){if(fabs(x) < 1e-8) return 0 ;if(x > 0) return 1 ;return -1 ;}struct poin

2014 Multi-University Training Contest 7小记

1003   数学 , 先暴力再解方程。 在b进制下是个2 , 3 位数的 大概是10000进制以上 。这部分解方程 2-10000 直接暴力 typedef long long LL ;LL n ;int ok(int b){LL m = n ;int c ;while(m){c = m % b ;if(c == 3 || c == 4 || c == 5 ||

2014 Multi-University Training Contest 6小记

1003  贪心 对于111...10....000 这样的序列,  a 为1的个数,b为0的个数,易得当 x= a / (a + b) 时 f最小。 讲串分成若干段  1..10..0   ,  1..10..0 ,  要满足x非递减 。  对于 xi > xi+1  这样的合并 即可。 const int maxn = 100008 ;struct Node{int

C++ | Leetcode C++题解之第393题UTF-8编码验证

题目: 题解: class Solution {public:static const int MASK1 = 1 << 7;static const int MASK2 = (1 << 7) + (1 << 6);bool isValid(int num) {return (num & MASK2) == MASK1;}int getBytes(int num) {if ((num &

C语言 | Leetcode C语言题解之第393题UTF-8编码验证

题目: 题解: static const int MASK1 = 1 << 7;static const int MASK2 = (1 << 7) + (1 << 6);bool isValid(int num) {return (num & MASK2) == MASK1;}int getBytes(int num) {if ((num & MASK1) == 0) {return

C - Word Ladder题解

C - Word Ladder 题解 解题思路: 先输入两个字符串S 和t 然后在S和T中寻找有多少个字符不同的个数(也就是需要变换多少次) 开始替换时: tips: 字符串下标以0开始 我们定义两个变量a和b,用于记录当前遍历到的字符 首先是判断:如果这时a已经==b了,那么就跳过,不用管; 如果a大于b的话:那么我们就让s中的第i项替换成b,接着就直接输出S就行了。 这样

【秋招笔试】9.07米哈游秋招改编题-三语言题解

🍭 大家好这里是 春秋招笔试突围,一起备战大厂笔试 💻 ACM金牌团队🏅️ | 多次AK大厂笔试 | 大厂实习经历 ✨ 本系列打算持续跟新 春秋招笔试题 👏 感谢大家的订阅➕ 和 喜欢💗 和 手里的小花花🌸 ✨ 笔试合集传送们 -> 🧷春秋招笔试合集 🍒 本专栏已收集 100+ 套笔试题,笔试真题 会在第一时间跟新 🍄 题面描述等均已改编,如果和你笔试题看到的题面描述

LeetCode 第414场周赛个人题解

目录 Q1. 将日期转换为二进制表示 原题链接 思路分析 AC代码 Q2. 范围内整数的最大得分 原题链接 思路分析 AC代码 Q3. 到达数组末尾的最大得分 原题链接 思路分析 AC代码 Q4. 吃掉所有兵需要的最多移动次数 原题链接 思路分析 AC代码 Q1. 将日期转换为二进制表示 原题链接 Q1. 将日期转换为二进制表示 思路分析

牛客小白月赛100部分题解

比赛地址:牛客小白月赛100_ACM/NOI/CSP/CCPC/ICPC算法编程高难度练习赛_牛客竞赛OJ A.ACM中的A题 #include<bits/stdc++.h>using namespace std;#define ll long long#define ull = unsigned long longvoid solve() {ll a,b,c;cin>>a>>b>

AtCoder Beginner Contest 370 Solution

A void solve() {int a, b;qr(a, b);if(a + b != 1) cout << "Invalid\n";else Yes(a);} B 模拟 void solve() {qr(n);int x = 1;FOR(i, n) FOR(j, i) qr(a[i][j]);FOR(i, n) x = x >= i ? a[x][i]: a[i][x];pr2(