Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
Tags
- 민겸수
- 비재귀셰그먼트
- 오손데이터읽기
- oracle
- 1967번
- 백준
- OS
- 백준 1253번
- 의미와 무의미의 경계에서
- FBX
- UnrealMP
- SQL
- 1253번
- 5639
- 언리얼 플러그인
- command not found
- 1759번
- 2단계로킹
- C++
- Security
- 데이터베이스 배움터
- hackerank
- 실습
- 트랜잭션 관리
- UActor
- 셰그먼트트리
- Unreal
- objtofbx
- 언리얼 커스텀 플러그인
- Linux
Archives
- Today
- Total
fatalite
점프 점프 - 11060번 백준 본문
문제
문제 난이도 : 실버 2
문제 분류 : BFS (DP)
문제 풀이
#include <iostream>
#include <vector>
#include <string>
#include <cmath>
#include <algorithm>
#include <queue>
using namespace std;
int main()
{
//Input
int n = 0;
vector<short> Map;
cin >> n;
for (int i = 0; i < n; ++i)
{
short Tmp;
cin >> Tmp;
Map.push_back(Tmp);
}
vector<bool> Visited(Map.size(), false);
queue<pair<short,short>> q;
q.push({ 0, 0 });
short MinVal = 10000;
while (!q.empty())
{
pair<short, short> p = q.front();
q.pop();
if (Visited[p.first]) continue;
Visited[p.first] = true;
if (p.second > MinVal) continue;
if (p.first == Map.size() - 1)
{
MinVal = min(p.second, MinVal);
}
vector<short> ToGo;
for (int i = 1; i <= Map[p.first]; ++i)
{
if (i + p.first < Map.size())
{
if (!Visited[i + p.first])
{
ToGo.push_back(i + p.first);
}
}
}
for (int i : ToGo)
{
q.push({ i ,p.second + 1 });
}
}
if (MinVal == 10000)
{
cout << -1;
}
else
{
cout << MinVal;
}
}
'코딩 인터뷰 > C++' 카테고리의 다른 글
🏳 겹치는 건 싫어 - 20922번 백준 (2) | 2023.09.16 |
---|---|
섬의 개수 - 4963번 백준 (0) | 2023.09.16 |
🏳 쉬운 계단 수 / 10844번 백준 (0) | 2023.09.10 |
연속합 / 1912번 백준 (0) | 2023.09.09 |
암호 만들기 / 1759번 백준 (0) | 2023.09.04 |