nowcoder 1.20牛客练习赛95 ADuplicate Strings
Posted SSL_ZZL
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了nowcoder 1.20牛客练习赛95 ADuplicate Strings相关的知识,希望对你有一定的参考价值。
Duplicate Strings
题目
题目描述
给出仅包含小写字母的字符串字符串 ss,qq 次操作,每次操作有两种类型:
- 把当前的字符串 s s s 复制 k k k 次之后接在自己后面。
- 询问当前字符串 s s s 中某个字符 c c c 出现的次数,答案对 1 0 9 + 7 10^9+7 109+7取模。
请你对每个第二种类型的操作输出答案。
输入描述:
第一行两个正整数
n
,
q
n,q
n,q,
n
n
n 表示字符串长度。
(
1
≤
n
,
q
≤
1
0
5
)
(1\\le n,q\\le 10^5)
(1≤n,q≤105)
接下来一行一个字符串
s
s
s,仅包含小写字母。
接下来
q
q
q 行,每行第一个正整数
o
p
op
op 表示操作类型。
(
1
≤
o
p
≤
2
)
(1\\le op\\le 2)
(1≤op≤2)
−
o
p
=
1
- op=1
−op=1,则后接一个整数
k
k
k,表示把
s
s
s 复制
k
k
k 次后接在自己后面。
(
0
≤
k
≤
1
0
9
)
(0\\le k\\le 10^9)
(0≤k≤109)
−
o
p
=
2
- op=2
−op=2,则后接一个小写字母
c
c
c,表示求
s
s
s 中
c
c
c 的出现次数。
输出描述:
对每个询问操作输出答案。
示例1
输入
3 3
aba
1 5
2 a
2 b
输出
12
6
说明
第一次操作后,字符串变为 abaabaabaabaabaaba。
解题思路
呃呃呃,太菜了只写出了第一题
并不需要真的把字符串复制出来,只需要记录字符出现的次数
每次复制时出现次数累乘就好了
但是每次复制都把26个字母都更新一遍太慢了,只需要把复制的累计数求出,输出的时候乘上即可
Code
#include <iostream>
#include <cstdio>
#include <string>
#define ll long long
using namespace std;
const ll P = 1e9 + 7;
char ls;
int n, q, c;
ll ans[30], x, xis = 1ll * 1;
string s;
int main()
scanf("%d %d", &n, &q);
cin >> s;
for(int i = 0; i < n; i ++)
ans[s[i] - 'a'] ++;
for(int i = 1; i <= q; i ++)
scanf("%d", &c);
if(c == 1)
scanf("%lld", &x);
xis = xis % P * ((x + 1 * 1ll) % P) % P;
if(c == 2)
cin >> ls;
printf("%lld\\n", ans[ls - 'a'] % P * xis % P);
以上是关于nowcoder 1.20牛客练习赛95 ADuplicate Strings的主要内容,如果未能解决你的问题,请参考以下文章
牛客网Nowcoder 牛客练习赛13 A.幸运数字Ⅰ B.幸运数字Ⅱ(数组或者dfs) C.幸运数字Ⅲ(思维)