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
- 너비 우선 탐색
- 삼성 SW 테스트
- IOS
- brute force
- 큐
- 알고리즘
- 하카타역
- DP
- 삼성테스트
- 깊이 우선 탐색
- 다이나믹 프로그래밍
- BFS
- 플로이드
- 백준
- 후쿠오카 여행경비
- 완전탐색
- 후쿠오카 요도바시 하카타
- 플로이드 와샬
- 시뮬레이션
- 미로찾기
- queue
- 후쿠오카 캐널시티
- 후쿠오카
- 후쿠오카 4박 5일
- 완전 탐색
- dfs
- deque
- 삼성시험
- BOJ
- 일본 여행
Archives
- Today
- Total
맛있는감귤
BOJ : 9019 DSLR 본문
문제 : https://www.acmicpc.net/problem/9019
출처
ACM-ICPC > Regionals > Asia > Korea > Nationwide Internet Competition > Asia Regional - Daejeon Nationalwide Internet Competition 2011 D번
횟수가 아닌 연산의 순서를 출력하는 BFS 문제.
그냥 queue<pair<숫자, 연산목록>> 으로 풀었다.
100이라는 숫자가 L을 했을 때 1000이되어야하는지 1이 되어야하는지 헷갈려서 두 방식으로 다 풀어봤는데 1000이 되는게 맞았다.
4636 MS 나온건 함정
#include <iostream> #include <queue> #include <string> using namespace std; int main(){ int T; cin>>T; while(T--){ int A, B; bool visited[10000]={0,}; queue<pair<int, string>> q; cin>>A>>B; q.push(make_pair(A, "")); visited[A]=true; while(!q.empty()){ int n = q.front().first; string s = q.front().second; q.pop(); if(n == B){ cout<<s<<"\n"; break; } // 1. D int dn = (2*n)%10000; string ds = s; if(!visited[dn]) { visited[dn] = true; ds += "D"; q.push(make_pair(dn, ds)); } // 2. S int sn; string ss = s; if((sn = n - 1) < 0) sn = 9999; if(!visited[sn]) { visited[sn] = true; ss += "S"; q.push(make_pair(sn, ss)); } // 3. L string ls = s; int ln1 = n/1000; int ln = (n%1000)*10+ln1; if(!visited[ln]) { visited[ln] = true; ls += "L"; q.push(make_pair(ln, ls)); } // 4. R string rs = s; int rn4 = n%10; int rn = (n/10)+ rn4*1000; if(!visited[rn]) { visited[rn] = true; rs += "R"; q.push(make_pair(rn, rs)); } } } }
'알고리즘 > 백준 알고리즘' 카테고리의 다른 글
BOJ : 1890 점프 (0) | 2017.02.16 |
---|---|
BOJ : 5397 키로거 (0) | 2017.02.15 |
BOJ : 5427 불 (2) | 2017.02.09 |
BOJ : 1963 소수 경로 (0) | 2017.02.08 |
BOJ : 5014 스타트링크 (0) | 2017.02.08 |