CF174B.File List

普及/提高-

通过率:0%

AC君温馨提醒

该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。

题目描述

Eudokimus, a system administrator is in trouble again. As a result of an error in some script, a list of names of very important files has been damaged. Since they were files in the BerFS file system, it is known that each file name has a form "name.ext", where:

  • name is a string consisting of lowercase Latin letters, its length is from 1 to 8 characters;
  • ext is a string consisting of lowercase Latin letters, its length is from 1 to 3 characters.

For example, "read.me", "example.txt" and "b.cpp" are valid file names and "version.info", "ntldr" and "contestdata.zip" are not.

Damage to the list meant that all the file names were recorded one after another, without any separators. So now Eudokimus has a single string.

Eudokimus needs to set everything right as soon as possible. He should divide the resulting string into parts so that each part would be a valid file name in BerFS. Since Eudokimus has already proved that he is not good at programming, help him. The resulting file list can contain the same file names.

输入格式

The input data consists of a single string ss , its length is from 11 to 41054·10^{5} characters. The string can contain only lowercase Latin letters ('a' - 'z') and periods ('.').

输出格式

In the first line print "YES" (without the quotes), if it is possible to divide ss into parts as required. In this case, the following lines should contain the parts of the required partition, one per line in the order in which they appear in ss . The required partition can contain the same file names. If there are multiple solutions, print any of them.

If the solution does not exist, then print in a single line "NO" (without the quotes).

输入输出样例

  • 输入#1

    read.meexample.txtb.cpp
    

    输出#1

    YES
    read.m
    eexample.t
    xtb.cpp
    
  • 输入#2

    version.infontldrcontestdata.zip
    

    输出#2

    NO
    
首页