1로 만들기 2

Wonseok Lee·2022년 4월 3일
0

Beakjoon Online Judge

목록 보기
115/117
post-thumbnail

Problme link: https://www.acmicpc.net/problem/12852

포인트 냠냠을 위한 BFS 문제이다.

숫자가 작아지면 작아지지 커질 수는 없다는 사실로부터 범위 내의 양수들만 접근하리라는 것을 알 수 있다.

#include <cstdio>
#include <queue>
#include <vector>

using namespace std;

int N;
int V[1000000 + 1];
int P[1000000 + 1];

void Bfs(const int start)
{
  V[start] = 1;
  P[start] = -1;

  queue<int> q;
  q.emplace(start);

  while (!q.empty())
  {
    int here = q.front();
    q.pop();

    if (here == 1)
    {
      break;
    }

    if (here % 3 == 0 && !V[here / 3])
    {
      V[here / 3] = 1;
      P[here / 3] = here;
      q.emplace(here / 3);
    }

    if (here % 2 == 0 && !V[here / 2])
    {
      V[here / 2] = 1;
      P[here / 2] = here;
      q.emplace(here / 2);
    }

    if (here - 1 > 0 && !V[here - 1])
    {
      V[here - 1] = 1;
      P[here - 1] = here;
      q.emplace(here - 1);
    }
  }
}

vector<int> path;

int main(void)
{
  scanf(" %d", &N);
  Bfs(N);

  int n = 1;
  while (P[n] != -1)
  {
    path.emplace_back(n);
    n = P[n];
  }

  printf("%d\n%d ", (int)path.size(), N);
  for (auto r = path.rbegin(); r != path.rend(); ++r)
  {
    printf("%d ", *r);
  }
  printf("\n");

  return 0;
}
profile
Pseudo-worker

0개의 댓글