当前位置:网站首页>Problem - 922D、Robot Vacuum Cleaner - Codeforces
Problem - 922D、Robot Vacuum Cleaner - Codeforces
2022-07-06 09:28:00 【你好_Ä】
Problem - 922D、Robot Vacuum Cleaner - Codeforces
Pushok the dog has been chasing Imp for a few hours already.
Fortunately, Imp knows that Pushok is afraid of a robot vacuum cleaner.While moving, the robot generates a string t consisting of letters ‘s’ and ‘h’, that produces a lot of noise. We define noise of string t as the number of occurrences of string “sh” as a subsequence in it, in other words, the number of such pairs (i, j), that i < j and and
.The robot is off at the moment. Imp knows that it has a sequence of strings ti in its memory, and he can arbitrary change their order. When the robot is started, it generates the string t as a concatenation of these strings in the given order. The noise of the resulting string equals the noise of this concatenation.Help Imp to find the maximum noise he can achieve by changing the order of the strings.
Input
The first line contains a single integer n (1 ≤ n ≤ 105) — the number of strings in robot’s memory.Next n lines contain the strings t1, t2, …, tn, one per line. It is guaranteed that the strings are non-empty, contain only English letters ‘s’ and ‘h’ and their total length does not exceed 105.
Output
Print a single integer — the maxumum possible noise Imp can achieve by changing the order of the strings.
Examples
input
4
ssh
hs
s
hhhs
output
18
问题解析
这题是说,给你n个字符串,这些字符串全都是由字符’s’和‘h’组成的。让你把这些字符串任意顺序组合起来,使得拼成的字符串含有的’sh‘子序列最多。
关于这题,用到的是一种叫“邻项交换”的方法写的,想法就是这样:两个字符串a和b,如果a+b组成的字符串含有的’sh‘子序列比b+a组成的字符串含有的多,那么最后拼接时把a放在b前是更好的选择。所以这种方法就是让我们写个cmp然后sort一下就行。
cmp内容就是把两个字符串按照不同顺序组合起来,分别计算出他们含有的’sh‘个数,至于’sh‘序列个数,就是每个h字符前面的所有s字符数量加起来。注意一下,如果两个字符串的’sh‘序列数相等,那要返回false(我也不知道为啥,但就是要这样,不然会re)。
AC代码
#include<iostream>
using namespace std;
#include<vector>
#include<algorithm>
#include<math.h>
#include<set>
#include<numeric>
#include<string>
#include<string.h>
#include<iterator>
#include<map>
#include<unordered_map>
#include<stack>
#include<list>
#include<queue>
#include<iomanip>
#define endl '\n'
#define int ll
typedef long long ll;
typedef unsigned long long ull;
typedef pair<ll, ll>PII;
const int N = 2e5 + 50;
int get_sh(string& s)
{
int cnt = 0, nums = 0, numh = 0;
for (auto i : s)
{
if (i == 's')
{
nums++;
}
else
{
numh++;
cnt += nums;
}
}
return cnt;
}
bool cmp(string a, string b)
{
string s1 = a + b, s2 = b + a;
return get_sh(s1)>get_sh(s2);
}
signed main()
{
ios_base::sync_with_stdio(false);
cin.tie(nullptr);
cout.tie(nullptr);
int n;
cin >> n;
vector<string>v(n);
for (int i = 0; i < n; i++)
cin >> v[i];
sort(v.begin(), v.end(),cmp);
string s;
for (auto i : v)s += i;
cout << get_sh(s) << endl;
return 0;
}
结尾
邻项交换法也是比较常见的贪心方法了,类似的题目还有算法提高 最小字符串和新国王游戏 - 题目 - Daimayuan Online Judge
边栏推荐
- 渗透测试 2 --- XSS、CSRF、文件上传、文件包含、反序列化漏洞
- Nodejs+vue online fresh flower shop sales information system express+mysql
- 【练习4-1】Cake Distribution(分配蛋糕)
- F - birthday cake (Shandong race)
- Opencv learning log 28 -- detect the red cup cover
- 信息安全-安全编排自动化与响应 (SOAR) 技术解析
- New to redis
- PySide6 信号、槽
- (POJ - 3258) River hopper (two points)
- Opencv learning log 26 -- detect circular holes and mark them
猜你喜欢
Write web games in C language
860. Lemonade change
Luogu P1102 A-B number pair (dichotomy, map, double pointer)
B - Code Party (girls' competition)
滲透測試 ( 1 ) --- 必備 工具、導航
Read and save zarr files
渗透测试 ( 5 ) --- 扫描之王 nmap、渗透测试工具实战技巧合集
Penetration test (8) -- official document of burp Suite Pro
Pytorch extract skeleton (differentiable)
【高老师软件需求分析】20级云班课习题答案合集
随机推荐
628. Maximum product of three numbers
树莓派4B64位系统安装miniconda(折腾了几天终于解决)
Penetration test (8) -- official document of burp Suite Pro
1605. Sum the feasible matrix for a given row and column
Radar equipment (greedy)
C language must memorize code Encyclopedia
Openwrt source code generation image
QT实现窗口渐变消失QPropertyAnimation+进度条
CEP used by Flink
(POJ - 3579) median (two points)
Penetration testing (5) -- a collection of practical skills of scanning King nmap and penetration testing tools
【高老师软件需求分析】20级云班课习题答案合集
Nodejs crawler
Is the sanic asynchronous framework really so strong? Find truth in practice
X-forwarded-for details, how to get the client IP
2078. Two houses with different colors and the farthest distance
Read and save zarr files
渗透测试 2 --- XSS、CSRF、文件上传、文件包含、反序列化漏洞
【练习-4】(Uva 11988)Broken Keyboard(破损的键盘) ==(链表)
Luogu P1102 A-B number pair (dichotomy, map, double pointer)