1로 만들기 2
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;
}
Author And Source
이 문제에 관하여(1로 만들기 2), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://velog.io/@aram_father/1로-만들기-2저자 귀속: 원작자 정보가 원작자 URL에 포함되어 있으며 저작권은 원작자 소유입니다.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)