设为首页 加入收藏

TOP

ZOJ - 3818 Pretty Poem
2015-07-20 17:44:22 来源: 作者: 【 】 浏览:2
Tags:ZOJ 3818 Pretty Poem

Description

Poetry is a form of literature that uses aesthetic and rhythmic qualities of language. There are many famous poets in the contemporary era. It is said that a few ACM-ICPC contestants can even write poetic code. Some poems has a strict rhyme scheme like "ABABA" or "ABABCAB". For example, "niconiconi" is composed of a rhyme scheme "ABABA" with A = "ni" and B = "co".

More technically, we call a poem pretty if it can be decomposed into one of the following rhyme scheme: "ABABA" or "ABABCAB". The symbol A, B and C are different continuous non-empty substrings of the poem. By the way, punctuation characters should be ignored when considering the rhyme scheme.

You are given a line of poem, please determine whether it is pretty or not.

Input

There are multiple test cases. The first line of input contains an integer T indicating the number of test cases. For each test case:

There is a line of poem S (1 <= length(S) <= 50). S will only contains alphabet characters or punctuation characters.

Output

For each test case, output "Yes" if the poem is pretty, or "No" if not.

Sample Input

3
niconiconi~
pettan,pettan,tsurupettan
wafuwafu

Sample Output

Yes
Yes
No

题意:求满足"ABABA" or "ABABCAB"组合的字符串
思路:暴力求A和B,推出C
#include 
   
    
#include 
    
      #include 
     
       #include 
      
        using namespace std; int main() { int t; char ch[60]; scanf("%d", &t); while (t--) { string str; scanf("%s", ch); int len = strlen(ch); for (int i = 0; i < len; i++) if (isalpha(ch[i])) str += ch[i]; len = str.length(); int flag = 0; for (int i = 1; i < len/2 && !flag; i++) for (int j = 1; j < len/2 && !flag; j++) { string A = str.substr(0, i); string B = str.substr(i, j); if (A == B) continue; if (A + B + A + B + A == str) { flag = 1; continue; } if (len - (i + j) * 3 > 0) { string AB = A + B; string C = str.substr(2*(i+j), len-3*(i+j)); if (A == C || B == C) continue; if (AB + AB + C + AB == str) { flag = 1; continue; } } } if (flag) printf("Yes\n"); else printf("No\n"); } return 0; }
      
     
    
   


】【打印繁体】【投稿】【收藏】 【推荐】【举报】【评论】 【关闭】 【返回顶部
分享到: 
上一篇ZOJ 3818 Pretty Poem(暴力)牡丹.. 下一篇ZOJ 3816 Generalized Palindromi..

评论

帐  号: 密码: (新用户注册)
验 证 码:
表  情:
内  容:

·用 C 语言或者限制使 (2025-12-25 08:50:05)
·C++构造shared_ptr为 (2025-12-25 08:50:01)
·既然引用计数在做 GC (2025-12-25 08:49:59)
·Java 编程和 c 语言 (2025-12-25 08:19:48)
·. net内存管理宝典这 (2025-12-25 08:19:46)