Dasha and Nightmares Dasha 和噩梦

time limit per test

4 seconds

memory limit per test

512 megabytes

Dasha, an excellent student, is studying at the best mathematical lyceum in the country. Recently, a mysterious stranger brought nn words consisting of small latin letters s1,s2,...,sns1,s2,...,sn to the lyceum. Since that day, Dasha has been tormented by nightmares.

Consider some pair of integers 〈i,j〉〈i,j〉 (1≤i≤j≤n1≤i≤j≤n). A nightmare is a string for which it is true:

  • It is obtained by concatenation sisjsisj;
  • Its length is odd;
  • The number of different letters in it is exactly 2525;
  • The number of occurrences of each letter that is in the word is odd.

For example, if si=si= "abcdefg" and sj=sj= "ijklmnopqrstuvwxyz", the pair 〈i,j〉〈i,j〉 creates a nightmare.

Dasha will stop having nightmares if she counts their number. There are too many nightmares, so Dasha needs your help. Count the number of different nightmares.

Nightmares are called different if the corresponding pairs 〈i,j〉〈i,j〉 are different. The pairs 〈i1,j1〉〈i1,j1〉 and 〈i2,j2〉〈i2,j2〉 are called different if i1≠i2i1≠i2 or j1≠j2j1≠j2.

Input

The first line contains a single integer nn (1≤n≤2⋅1051≤n≤2⋅105) --- the number of words.

The following nn lines contain the words s1,s2,...,sns1,s2,...,sn, consisting of small latin letters.

It is guaranteed that the total length of words does not exceed 5⋅1065⋅106.

Output

Print a single integer --- the number of different nightmares.

Example

Input

Copy

复制代码

10

ftl

abcdefghijklmnopqrstuvwxy

abcdeffghijkllmnopqrsttuvwxy

ffftl

aabbccddeeffgghhiijjkkllmmnnooppqqrrssttuuvvwwxxyy

thedevid

bcdefghhiiiijklmnopqrsuwxyz

gorillasilverback

abcdefg

ijklmnopqrstuvwxyz

Output

Copy

复制代码
5

Note

In the first test, nightmares are created by pairs 〈1,3〉〈1,3〉, 〈2,5〉〈2,5〉, 〈3,4〉〈3,4〉, 〈6,7〉〈6,7〉, 〈9,10〉〈9,10〉.

每次测试时间限制 4 秒

每次测试内存限制 512 兆字节

Dasha 是一名优秀的学生,正在全国最好的数学学院学习。最近,一位神秘的陌生人将 n

个由小写拉丁字母 s1、s2、...、sn

组成的单词带到了学院。从那天起,Dasha 就一直被噩梦折磨。

考虑一对整数 〈i,j〉

(1≤i≤j≤n

)。噩梦是一个字符串,它为真:

它由连接 sisj 获得

它的长度是奇数;

其中不同字母的数量正好是 25

单词中每个字母出现的次数是奇数。

例如,如果 si=

"abcdefg" 和 sj=

"ijklmnopqrstuvwxyz",则对 〈i,j〉

会造成噩梦。

如果 Dasha 能数出噩梦的数量,她就不会再做噩梦了。噩梦太多了,所以 Dasha 需要你的帮助。数一数不同噩梦的数量。

如果对应的对 〈i,j〉

不同,则称噩梦不同。如果 i1≠i2

或 j1≠j2

,则对 〈i1,j1〉

和 〈i2,j2〉

不同。

输入

第一行包含一个整数 n

(1≤n≤2⋅105

) --- 单词数。

接下来的 n

行包含单词 s1,s2,...,sn

,由小写拉丁字母组成。

保证单词的总长度不超过 5⋅106

输出

打印一个整数------不同噩梦的数量。

示例

输入副本

10

ftl

abcdefghijklmnopqrstuvwxy

abcdeffghijkllmnopqrsttuvwxy

ffftl

aabbccddeeffgghhiijjkkllmmnnooppqqrrssttuuvvwwxxyy

thedevid

bcdefghhiiiijklmnopqrsuwxyz

gorillasilverback

abcdefg

ijklmnopqrstuvwxyz

输出副本

5

注意

在第一个测试中,噩梦是由〈1,3〉

、〈2,5〉

、〈3,4〉

、〈6,7〉

、〈9,10〉

组成的。

代码:

cpp 复制代码
#include <iostream>
#include <vector>
#include <unordered_map>
#include <string>
using namespace std;

const long long MAX_N = 200010;
const long long FULL_MASK = (1 << 26) - 1;

unordered_map<long long, long long> count_map;

long long solve() {
    long long n;
    cin >> n;

    vector<string> strings(n + 1);
    vector<long long> bitmask(n + 1), all_chars(n + 1);

    for (long long i = 1; i <= n; ++i) {
        cin >> strings[i];
        for (char c : strings[i]) {
            bitmask[i] ^= (1 << (c - 'a'));
            all_chars[i] |= (1 << (c - 'a'));
        }
    }

    long long ans = 0;

    for (long long excluded_char = 0; excluded_char < 26; ++excluded_char) {
        count_map.clear();

        for (long long i = 1; i <= n; ++i) {
            if ((all_chars[i] >> excluded_char) & 1) continue;

            long long target = bitmask[i] ^ FULL_MASK ^ (1 << excluded_char);
            ans += count_map[target];
            count_map[bitmask[i]]++;
        }
    }

    return ans;
}

int main() {
    ios::sync_with_stdio(0);
    cin.tie(0);

    cout << solve() << endl;

    return 0;
}
相关推荐
汉克老师16 小时前
GESP2025年3月认证C++五级( 第三部分编程题(1、平均分配))
c++·算法·贪心算法·排序·gesp5级·gesp五级
智者知已应修善业19 小时前
【51单片机2个按键控制流水灯运行与暂停】2023-9-6
c++·经验分享·笔记·算法·51单片机
云泽80820 小时前
C++11 核心特性全解:列表初始化、右值引用与移动语义实战
开发语言·c++
AI进化营-智能译站21 小时前
ROS2 C++开发系列12-用多态与虚函数构建可扩展的ROS2机器人行为模块
开发语言·c++·ai·机器人
Morwit21 小时前
QML组件之间的通信方案(暴露子组件)
c++·qt·职场和发展
qeen871 天前
【数据结构】建堆的时间复杂度讨论与TOP-K问题
c语言·数据结构·c++·学习·
图码1 天前
如何用多种方法判断字符串是否为回文?
开发语言·数据结构·c++·算法·阿里云·线性回归·数字雕刻
handler011 天前
Linux 内核剖析:进程优先级、上下文切换与 O(1) 调度算法
linux·运维·c语言·开发语言·c++·笔记·算法
zhouwy1131 天前
Linux进程与线程编程详解
linux·c++
A7bert7771 天前
【YOLOv8pose部署至RDK X5】模型训练→转换bin→Sunrise 5部署
c++·python·深度学习·yolo·目标检测