#include <bits/stdc++.h>
#define gc getchar
#define rep(i, a, b) for(int i=a;i<=b;i++)
#define rep2(i, a, b) for(int i=a;i>=b;--i)
#define wipe(a, b) memset(a, b, sizeof a);
#define pb push_back
#define ff first
#define ss second
using namespace std;
typedef pair<int, int> pii;
inline int scan(){
int n=0, x=gc(), s=1;
for(;x<'0'||x>'9';x=gc()) if(x=='-') s=-1;
for(;x>='0'&&x<='9';x=gc()) n = 10*n + x - '0';
return n*s;
}
int gcd(int a, int b){
return (b?gcd(b, a%b):a);
}
struct node{
node *son[26];
int end, marca;
node(){
end = 0;
marca = 0;
for(int i=0;i<26;i++)
son[i] = nullptr;
}
};
node *root;
inline void add(string str){
node *x = root;
for(auto c : str){
if(x->son[c-'a'] == nullptr) x->son[c-'a'] = new node();
x = x->son[c-'a'];
}
x->end++;
}
int search(string str, int marca){
node *x = root;
int ans=0;
for(auto c : str){
if(!x->son[c-'a']) break;
x = x->son[c-'a'];
if(x->end > 0 && x->marca != marca) ans += x->end, x->marca = marca;
}
return ans;
}
int main(){
ios::sync_with_stdio(false), cin.tie(0);
root = new node;
int n;
cin >> n;
vector<string> str;
for(int i=1;i<=n;i++){
string x;
cin >> x;
str.push_back(x);
}
sort(str.begin(), str.end(), [](string const& a, string const& b){
return a.size() < b.size();
});
int ans=0;
for(int i=0;i<n;i++){
for(int j=0;j<(int)str[i].size();j++){
int x = search(str[i].substr(j), i);
//cout << "Valor da palavra " << str[i] << ": " << x << "\n";
ans += x;
}
//cout << "Adicionando palavra " << str[i] << "\n";
add(str[i]);
}
int qtd=1;
string atual = str[0];
for(int i=1;i<(int)str.size();i++){
if(str[i] == atual) ++qtd;
else{
ans += ((qtd*(qtd-1))/2);
atual = str[i];
qtd=1;
}
}
ans += ((qtd*(qtd-1))/2);
cout << ans << "\n";
return 0;
}
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
2 ms |
376 KB |
Output is correct |
2 |
Incorrect |
2 ms |
380 KB |
Output isn't correct |
3 |
Incorrect |
2 ms |
440 KB |
Output isn't correct |
4 |
Incorrect |
2 ms |
584 KB |
Output isn't correct |
5 |
Incorrect |
3 ms |
972 KB |
Output isn't correct |
6 |
Incorrect |
3 ms |
1168 KB |
Output isn't correct |
7 |
Incorrect |
4 ms |
1736 KB |
Output isn't correct |
8 |
Incorrect |
4 ms |
2296 KB |
Output isn't correct |
9 |
Incorrect |
9 ms |
3840 KB |
Output isn't correct |
10 |
Incorrect |
14 ms |
7948 KB |
Output isn't correct |
11 |
Incorrect |
16 ms |
7948 KB |
Output isn't correct |
12 |
Incorrect |
25 ms |
14924 KB |
Output isn't correct |
13 |
Incorrect |
17 ms |
14924 KB |
Output isn't correct |
14 |
Incorrect |
26 ms |
15576 KB |
Output isn't correct |
15 |
Incorrect |
30 ms |
16344 KB |
Output isn't correct |
16 |
Incorrect |
13 ms |
16344 KB |
Output isn't correct |
17 |
Correct |
11 ms |
16344 KB |
Output is correct |
18 |
Correct |
10 ms |
16344 KB |
Output is correct |
19 |
Incorrect |
22 ms |
16344 KB |
Output isn't correct |
20 |
Incorrect |
12 ms |
16344 KB |
Output isn't correct |