BOJ2206: 벽 부수고 이동하기
문제 : boj 2206 풀이 벽이 뚫리지 않았을 때(w=0), 벽이 뚫렸을 때(w=1)를 확인할 수 있도록 배열 dist를 3차원 배열로 만들고, 거리를 담는다. 새로 탐색하는 좌표를 q에 담고, 하나씩 꺼내면서 이전 좌표값에 1씩 더한다. 이 값을 dist에 넣는다. #include #include using namespace std; struct map { int x, y, w; }; int N,M; int zido[1001][1001]; int dist[2][1001][1001]; int dx[]={1,0,-1,0}; int dy[]={0,1,0,-1}; int bfs(){ map now; int xtmp, ytmp; queue q; q.push({0,0,0}); dist[0][0][0] = 1;..
algorithm
2021. 12. 4. 00:22
최근에 올라온 글
TAG
- Gan
- depth
- machine learning
- deeplearning
- conditional GAN
- OS
- ML Pipeline
- ML
- image
- 딥러닝
- AI
- feature
- design pattern
- MLOps
- mode collapse
- controllable GAN
- 운영체제
- Operating System
- pcb
- 신호처리
- Raspberry Pi
- depthmap
- 디지털신호처리
- Building Basic GAN
- 3d object detection
- Depth estimation
- Generative Model
- DSP
- Deep learning
- TRACKING
- Total
- Today
- Yesterday
최근에 달린 댓글
링크
공지사항
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
글 보관함