码迷,mamicode.com
首页 > 其他好文 > 详细

51nod1347(简单逻辑)

时间:2017-01-12 10:43:42      阅读:225      评论:0      收藏:0      [点我收藏+]

标签:clu   i++   space   nod   main   链接   ret   int   旋转   

题目链接:https://www.51nod.com/onlineJudge/questionCode.html#!problemId=1347

 

题意:中文题诶~

 

思路:稍推理一下就可以发现字符串a是对偶串是其可以由对偶串旋转得到的充要条件;

 

代码:

 1 #include <bits/stdc++.h>
 2 using namespace std;
 3 
 4 string b, a;
 5 
 6 bool is_ok(string a){
 7     int len=a.size()/2;
 8     for(int i=0; i<len; i++){
 9         if(a[i]!=a[i+len]){
10             return false;
11         }
12     }
13     return true;
14 }
15 
16 int main(void){
17     cin >> a;
18     if(a.size()&1){
19         cout << "NO" << endl;
20         return 0;
21     }
22     if(is_ok(a)){
23         cout << "YES" << endl;
24     }else{
25         cout << "NO" << endl;
26     }
27     return 0;
28 }

 

51nod1347(简单逻辑)

标签:clu   i++   space   nod   main   链接   ret   int   旋转   

原文地址:http://www.cnblogs.com/geloutingyu/p/6274860.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!