ABC145 B - Echo

Calendar Clock iconCalendar Clock icon

atcoder

目次

# 問題

https://atcoder.jp/contests/abc145/tasks/abc145_b

文字列SSが与えられて、SSがある文字列の完全な繰り返しになっているかを判定する問題です.

# 解説

完全な繰り返しなので、SSの長さが奇数の場合にはありえないのでNoです.
偶数の場合にはSSを真ん中で区切ってその前半と後半の文字列を1文字ずつ比較してすべての文字が同じであればYesとなります.

# 計算量

文字列を半分にして全文字比較する必要があるので、

O(N/2)O(N / 2)

# 解答

// C++ 14
#include <iostream>
#include <string>
#include <vector>
#include <list>
#include <algorithm>
#include <queue>
#include <stack>
#include <set>
#include <map>
#include <unordered_map>
#include <math.h>

#define ll long long
#define Int int
#define loop(x, start, end) for(Int x = start; x < end; x++)
#define loopdown(x, start, end) for(int x = start; x > end; x--)
#define rep(n) for(int x = 0; x < n; x++)
#define span(a,x,y) a.begin()+x,a.begin()+y
#define span_all(a) a.begin(),a.end()
#define len(x) (x.size())
#define last(x) (*(x.end()-1))

using namespace std;
Int N;
string S;

void input() {
  cin >> N >> S;
}

void solve() {
  if (N % 2 == 1) {
    cout << "No" << endl;
    return;
  }

  if (S.substr(0, N/2) == S.substr(N/2)) cout << "Yes" << endl;
  else cout << "No" << endl;
}

int main(void) {
  input();
  solve();
  return 0;
}

リモートフリーランス。ウェブサービス、スマホアプリエンジニア。
東アジアを拠点に世界を移動しながら活動してます!

お仕事のご依頼・お問い合わせはこちら

コメント