티스토리 뷰
https://www.acmicpc.net/problem/1012
#include<utility>
#include<iostream>
using namespace std;
int path;
int M, N, K; //가로 세로 배추몇개
int map[50][50];
int direct[4][2] = { {1,0},{-1,0},{0,1},{0,-1} };
void dfs(pair<int,int> x) {
if (map[x.first][x.second] != 1) return;
map[x.first][x.second] = path;
for (int i = 0; i < 4; i++) {
int dy = x.first + direct[i][0];
int dx = x.second + direct[i][1];
if (0 <= dx && dx < M && 0 <= dy && dy < N && map[dy][dx] == 1)
dfs(make_pair(dy, dx));
}
}
void findCabbage() {
pair<int, int> Start;
while (1) {
for (int i = 0; i < N; i++) {
for (int j = 0; j < M; j++) {
if (map[i][j] == 1) {
Start = make_pair(i, j);
goto EXIT;
}
if (i == N - 1 && j == M - 1)
return;
}
}
EXIT:
dfs(Start);
path++;
}
}
int main(void) {
int T;
cin >> T;
while (T-- > 0) {
path = 2;
int x, y;
cin >> M >> N >> K;
for (int i = 0; i < K; i++) {
cin >> x >> y;
map[y][x] = 1;
}
findCabbage();
cout << path - 2 << endl;
}
}
'Algorithm > 유형별 : BFS, DFS' 카테고리의 다른 글
[C++] [DFS] 백준 11724번 : 연결 요소의 개수 (0) | 2020.02.02 |
---|---|
[C++] [BFS] 백준 7576번 : 토마토 (0) | 2020.02.02 |
[C++] [BFS] 백준 3187번 : 양치기 꿍 (0) | 2020.02.02 |
[C++] [BFS] 백준 1697번 : 숨바꼭질 (0) | 2020.02.02 |
[C++] [BFS] 백준 2178번 : 미로 탐색 (0) | 2019.11.14 |
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
링크
TAG
- controller
- ojdbc6.jar
- 추상화
- jdbc
- Oracle
- INSERT
- 다형성
- .
- view
- 객체지향
- java
- 상속
- Delete
- Scott/Tiger
- 객체
- model
- JdbcTemplate
- OOP
- 캡슐화
- JDBC 프로그램 작성단계
- Update
- java 환경설정
- MVC
- select
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
글 보관함