일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 | 31 |
Tags
- 자작시
- python 강좌
- C++
- 슬픔
- 2021
- 2020
- dynamic programming
- 백준
- 강의
- 라즈베리파이 모니터
- 라즈베리파이
- 파이썬 강좌
- mmcv
- python 강의
- 알고리즘
- 계획
- 철학
- 라즈베리파이3
- 프로그래밍
- 머신러닝
- it
- 다이나믹프로그래밍
- 파이썬
- python
- dp
- 파이썬 강의
- 강좌
- 공부
- mmdetection
- BOJ
Archives
- Today
- Total
Stargazer
[백준] 9019번 : DSLR (BFS - Queue) 본문
반응형
접근:
최소 길이를 찾는 문제이기 때문에 BFS로 접근한다.
전략:
D,S,L,R 의 연산 과정과 현재 숫자를 큐에 넣고, 한번 씩 돌린다. 이때 이전 상태를 반복하지 않기 위해서
visit 한 상태를 저장하는 배열을 만들어 사용한다.
코드:
#include <iostream>
#include <queue>
using namespace std;
//DSLR
int t;
bool visit[10001];
void bfs(int a , int b){
queue<pair<int,string>> q;
q.push({a,""});
for(auto& a : visit){
a = false;
}
while(!q.empty()){
auto cur = q.front(); q.pop();
if(cur.first == b){
cout << cur.second << '\n';
return;
}
//d
int d = (cur.first * 2) % 10000;
if(!visit[d]){
visit[d] = true;
q.push( {d, cur.second +"D" });
}
//s
int s = (cur.first -1 + 10000) % 10000;
if(!visit[s]){
visit[s] = true;
q.push( {s, cur.second +"S" });
}
//l
int l = (cur.first * 10 + (cur.first / 1000)) % 10000;
if(!visit[l]){
visit[l] = true;
q.push( {l, cur.second +"L" });
}
//r
int r = (cur.first%10)*1000 + cur.first/10 ;
if(!visit[r]){
visit[r] = true;
q.push({r, cur.second +"R" });
}
}
}
int main(){
cin >> t;
for(int test=0;test<t;test++){
int a, b;
cin >> a >> b;
bfs(a,b);
}
return 0;
}
반응형
'Undergraudate basics(학부생 기초) > 자료구조, 알고리즘' 카테고리의 다른 글
[백준(BOJ)] 12015번 : 가장 긴 증가하는 부분 수열 C++ 풀이 (이분 탐색) (0) | 2022.07.13 |
---|---|
[백준] 9328번 : 열쇠 c++ 풀이(BFS) (0) | 2022.07.12 |
[백준] 7579번 : 앱 c++ (DP) (0) | 2022.07.10 |
[백준] 5430번 : AC (deque (or vector)) (0) | 2022.07.09 |
[백준] 2473번 : 세 용액 C++ (두 포인터) (0) | 2022.07.09 |
Comments