[C++] 백준 2661번 좋은수열

lacram·2021년 8월 10일
0

백준

목록 보기
51/60

문제

백준 2661번 좋은수열

풀이

작은 숫자부터 검사해가며 바로앞의 1개부터 문자열의 절반까지 좋은수열일 경우에 해당 숫자를 추가하면 된다.

#include <iostream>
#include <vector>
#include <cstring>
#include <fstream>
#include <algorithm>
#include <cmath>
#include <stack>
#define endl '\n'

using namespace std;

int n;
string ans;
bool fin = false;

bool can(string str){
  int len = str.length();

  for (int j=1; j<=len/2; j++){
    if (str.substr(len-j*2,j) == str.substr(len-j)){
      return false;
    }
  }
  return true;
}

void solve(string str){
  if (fin) return;

  if (str.length() == n) {
    ans = str;
    fin = true;
    return;
  }

  for (char i='1'; i<='3'; i++){
    if (can(str+i)) 
      solve(str+i);
  }
}

int main(){
  ios_base :: sync_with_stdio(false);
  cin.tie(NULL);
  cout.tie(NULL);

  ifstream cin;
  cin.open("input.txt");

  cin >> n;

  string str = "1";

  solve(str);

  cout << ans;
}
profile
기록용

0개의 댓글