字符串
文章平均质量分 85
Piink
可英雄也有打不下的江山
展开
-
Palindrome CodeForces - 1512C
You are given a string s consisting of the characters ‘0’, ‘1’, and ‘?’. You need to replace all the characters with ‘?’ in the string s by ‘0’ or ‘1’ so that the string becomes a palindrome and has exactly a characters ‘0’ and exactly b characters ‘1’. No原创 2021-05-26 22:03:33 · 202 阅读 · 0 评论 -
In-place Sorting ( 2021年度训练联盟热身训练赛第五场 )
链接:https://ac.nowcoder.com/acm/contest/16741/H 来源:牛客网 时间限制:C/C++ 1秒,其他语言2秒 空间限制:C/C++ 262144K,其他语言524288K 64bit IO Format: %lld 题目描述 Woe is you – for your algorithms class you have to write a sorting algorithm, but you missed the relevant lecture! The subj原创 2021-05-19 20:09:29 · 161 阅读 · 0 评论 -
Balance the Bits CodeForces - 1504C( 字符串 + 思维 )
A sequence of brackets is called balanced if one can turn it into a valid math expression by adding characters ‘+’ and ‘1’. For example, sequences ‘(())()’, ‘()’, and ‘(()(()))’ are balanced, while ‘)(’, ‘(()’, and ‘(()))(’ are not. You are given a binary原创 2021-05-19 19:06:10 · 179 阅读 · 0 评论 -
单词数 HDU - 2072( 字符串处理 )
lily的好朋友xiaoou333最近很空,他想了一件没有什么意义的事情,就是统计一篇文章里不同单词的总数。下面你的任务是帮助xiaoou333解决这个问题。 Input 有多组数据,每组一行,每组就是一篇小文章。每篇小文章都是由小写字母和空格组成,没有标点符号,遇到#时表示输入结束。 Output 每组只输出一个整数,其单独成行,该整数代表一篇文章里不同单词的总数。 Sample Input you are my friend Sample Output 4 STL解法:set容器 #include &原创 2020-12-26 11:05:06 · 183 阅读 · 0 评论 -
Non-Substring Subsequence CodeForces - 1451B(字符串处理问题)
Hr0d1y has q queries on a binary string s of length n. A binary string is a string containing only characters ‘0’ and ‘1’. A query is described by a pair of integers li, ri (1≤li<ri≤n). For each query, he has to determine whether there exists a good sub原创 2020-12-05 11:16:21 · 329 阅读 · 0 评论 -
Beautiful String HihoCoder - 1061(字符串处理)
We say a string is beautiful if it has the equal amount of 3 or more continuous letters (in increasing order.) Here are some example of valid beautiful strings: “abc”, “cde”, “aabbcc”, “aaabbbccc”. Here are some example of invalid beautiful strings: “abd”,原创 2020-10-25 10:58:03 · 231 阅读 · 0 评论 -
牛客竞赛(字符串+思维)
链接:https://ac.nowcoder.com/acm/contest/9715/B 来源:牛客网 题目描述 给出一个仅包含小写字母的字符串s,你最多可以操作k次,使得任意一个小写字母变为与其相邻的小写字母(ASCII码差值的绝对值为1),请你求出可能的最长相等子序列(即求这个字符串修改至多k次后的的一个最长子序列,且需要保证这个子序列中每个字母相等)。 子序列:从原字符串中取任意多个字母按照先后顺序构成的新的字符串。 示例1 输入 2,“abcde” 返回值 3 示例2 输入 10,“acesxd”原创 2020-12-04 22:01:54 · 1017 阅读 · 0 评论 -
求两行字符串的和与差 计蒜客 - A1031(字符串处理 )
我们有两个字符串集合 A 和 B,A 和 B 中均没有重复元素 ,我们定义这两个字符串集合的和为不重复的字符串的数目 ,定义集合 A 减去集合 B 的差为集合 A 中字符串去掉与集合 B 中重复的字符串的数目,例如 集合 A = { “George”, “Jim”, “John”, “Blake”, “Kevin”, “Michael” } ,集合B = { “George”, “Katie”, “Kevin”, “Michael”, “Ryan” } ,集合 A 与 B 的和为 8, 因为一共有{ “Ge原创 2020-12-05 20:51:42 · 239 阅读 · 0 评论