Evenly Separated Strings
题号:NC226668
时间限制:C/C++/Rust/Pascal 1秒,其他语言2秒
空间限制:C/C++/Rust/Pascal 256 M,其他语言512 M
64bit IO Format: %lld

题目描述

Given a string consisting of lowercase letters. We say the string is evenly separated if and only if there is an even number of characters between every pair of the same characters. For example, abba is evenly separated while aabba is not. For this problem, you will write a program to determine whether the given string s is evenly separated or not.

输入描述:

Input consists of a single line containing the string of at most 1,000,000 lower-case letters to check if it is evenly separated.

输出描述:

The output line consists of the word YES if the string is evenly separated or NO if the string is not evenly separated.
示例1

输入

复制
abba

输出

复制
YES
示例2

输入

复制
aabba

输出

复制
NO
示例3

输入

复制
abcdefyzfedcba

输出

复制
YES