后缀字符串|2019 蓝桥杯省赛 B 组模拟赛(一)第7题

后缀字符串|2019 蓝桥杯省赛 B 组模拟赛(一)第7题_第1张图片

后缀字符串|2019 蓝桥杯省赛 B 组模拟赛(一)第7题_第2张图片题目链接:https://nanti.jisuanke.com/t/36115
利用map https://blog.csdn.net/caipengbenren/article/details/86632489

#include
#include
#include
using namespace std;
string a[100001];
int main(){
    int n;
    mapcp;
    scanf("%d", &n);
    for(int i = 1; i <= n; i++){
        cin>>a[i];
        for(int j = 0; j <= a[i].size() - 1; j++){
            cp[a[i].substr(j)]++;
        }
    }
        for(int i = 1; i <= n; i++){
            cout<

你可能感兴趣的:(蓝桥杯)