P8630 [蓝桥杯 2015 国 B] 密文搜索--map、substr

P8630 [蓝桥杯 2015 国 B] 密文搜索

题目

在这里插入图片描述

解析

题意:密码是给出字符串S的乱序,我们需要找到有哪几个位置能够匹配密码,返回能在S中的匹配次数。

这里我们可以看作哈希,但是密码是字符串,常规数组显然不能满足。
于是我们得引入字典:map【让唯一的密码做:键,让出现次数作为值】

因为给出的密码是乱序,所以我们在存入map时先利用sort进行排序,然后值++。

为什么要先排序?因为只要字符的数量相同,那么密码就一定是S中的乱序

最后我们遍历S,一次截取8个长度,然后加上相应键的值,因为不是密码的值为0=没加

注意substr第二个参数是长度

string a = s.substr(i, 8);(第二个参数是长度!!!)
//substr中的第一个参数是起始位置,第二个参数是长度【与sort不同】

代码

#include <iostream>
#include <vector>
#include <set>
#include <string>
#include <cstring>
#include <algorithm>
#include <math.h>
#include <queue>
#include <climits>  // 包含INT_MAX常量
#include <cctype>
#include <map>
using namespace std;
int n, ans;
string s;
map<string, int> mp;//字典string:为键,int:为值

int main() {
	cin >> s >> n;
	for (int i = 0; i < n; i++) {
		string x;
		cin >> x;
		sort(x.begin(), x.end());
		mp[x]++;
	}
	for (int i = 0; i < s.size() - 7; i++) {
		string a = s.substr(i, 8);
		//substr中的第一个参数是起始位置,第二个参数是长度【与sort不同】
		sort(a.begin(), a.end());
		ans += mp[a];
	}
	cout << ans;
	return 0;
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值