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
- XR Interaction Toolkit
- 그래프
- 트리
- DFS
- 정렬
- 우선순위 큐
- 다이나믹 프로그래밍
- 구현
- 다익스트라
- 수학
- Team Fortress 2
- Unreal Engine 5
- 그리디 알고리즘
- 누적 합
- ue5
- VR
- 브루트포스
- 스택
- 알고리즘
- c++
- 백준
- 유니티
- 유니온 파인드
- 백트래킹
- 자료구조
- BFS
- 재귀
- 문자열
- 시뮬레이션
- 투 포인터
Archives
- Today
- Total
1일1알
백준 14248번 점프 점프 C++ 본문
https://www.acmicpc.net/problem/14248
bfs를 이용해서 풀었다.
#include <iostream>
#include <string>
#include <vector>
#include <math.h>
#include <algorithm>
#include <utility>
#include <stack>
#include <queue>
#include <math.h>
#include <set>
#include <map>
#include <list>
#include <unordered_map>
#include <unordered_set>
#include <iomanip>
#include <limits.h>
using namespace std;
using int64 = long long;
int n, s;
vector<int> v;
vector<bool> found;
int main() {
ios_base::sync_with_stdio(false);
cin.tie(NULL);
cout.tie(NULL);
cin >> n;
v = vector<int>(n);
found = vector<bool>(n, false);
for (int i = 0; i < n; i++) {
cin >> v[i];
}
cin >> s;
s -= 1;
queue<int> q;
found[s] = true;
int ans = 1;
q.push(s);
while (!q.empty()) {
int curr = q.front();
q.pop();
int left = curr - v[curr];
int right = curr + v[curr];
if (left >= 0) {
if (found[left] == false) {
found[left] = true;
ans++;
q.push(left);
}
}
if (right < n) {
if (found[right] == false) {
found[right] = true;
ans++;
q.push(right);
}
}
}
cout << ans;
}
'알고리즘' 카테고리의 다른 글
백준 22352번 항체 인식 C++ (0) | 2022.12.08 |
---|---|
백준 5212번 지구 온난화 C++ (0) | 2022.12.07 |
백준 12018번 Yonsei TOTO C++ (1) | 2022.12.05 |
백준 2992번 크면서 작은 수 C++ (0) | 2022.12.04 |
백준 21772번 가희의 고구마 먹방 C++ (0) | 2022.12.03 |