QOJ.ac
QOJ
ID | Problem | Submitter | Result | Time | Memory | Language | File size | Submit time | Judge time |
---|---|---|---|---|---|---|---|---|---|
#398545 | #3764. String Commutativity | Hjcc# | AC ✓ | 68ms | 36676kb | C++14 | 1003b | 2024-04-25 14:50:13 | 2024-04-25 14:50:13 |
Judging History
answer
# include <bits/stdc++.h>
using namespace std;
const int N = 1e6 + 5;
string s[N];
int kmp[N], n;
int K(string &s) {
for (int i = 1; i < s.size(); i++) {
int l = kmp[i];
while (l && (s[l] != s[i])) {
l = kmp[l];
}
if (s[l] == s[i]) {
kmp[i + 1] = l + 1;
} else {
kmp[i + 1] = 0;
}
}
return kmp[s.size()];
}
int main() {
# ifndef ONLINE_JUDGE
freopen("in.txt", "r", stdin);
# endif
ios::sync_with_stdio(0);
cin.tie(0); cout.tie(0);
while (cin >> n) {
unordered_map<string, int> mp;
for (int i = 1; i <= n; i++) {
cin >> s[i];
int x = K(s[i]);
if (x && s[i].size() % (s[i].size() - x) == 0) {
string t;
for (int j = 0; j < s[i].size() - x; j++) {
t.push_back(s[i][j]);
}
s[i] = t;
}
++mp[s[i]];
}
long long ans = 0;
for(auto i : mp) {
ans += 1ll * i.second * (i.second - 1) / 2;
}
cout << ans << '\n';
}
}
Details
Tip: Click on the bar to expand more detailed information
Test #1:
score: 100
Accepted
time: 68ms
memory: 36676kb
input:
2 a ab 2 ab ab 3 a aa aaa 100 gghj dghj ajgh djch ajgh djcjdjcj dghj djcj ggdj dghj djch dghj djch gghjgghj ajchajch djcf ajgh djcf dghj djchdjch gghj ajch ajch djch djcf dgcj djch djch djcj djch ggdjggdj ggdj ajch djcj ajch ajgh dghj ajgh ggdj dgcj ajch ajghajghajgh dgcj dacj dgcjdgcj gghj gghj ggd...
output:
0 1 3 499 544 497 508 926 864 674 954 688 787 588 798 851 985 544 599 656 594 1639 1215 849 833 574 583 652 593 1192 482 480 474 634 696 501 847 488 560 868 577 1269 736 706 478 699 774 749 501 693 517 632 579 1084 477 554 572 707 795 687 673 560 602 1266 538 675 489 580 721 635 746 700 569 914 1070...
result:
ok 2209 lines