Recent Posts
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 | 31 |
Tags
- 달인막창
- 자원부족
- 개성국밥
- 오블완
- vfr video
- 겨울 부산
- PersistenceContext
- tolerated
- 깡돼후
- terminal
- JanusWebRTC
- pytest
- PytestPluginManager
- 코루틴 빌더
- mp4fpsmod
- taint
- VARCHAR (1)
- Spring Batch
- 티스토리챌린지
- python
- 코루틴 컨텍스트
- k8s #kubernetes #쿠버네티스
- preemption #
- JanusWebRTCServer
- JanusGateway
- table not found
- JanusWebRTCGateway
- kotlin
- Value too long for column
- 헥사고날아키텍처 #육각형아키텍처 #유스케이스
Archives
너와 나의 스토리
[BOJ] 1987 알파벳 본문
반응형
문제: https://www.acmicpc.net/problem/1987
문제 풀이:
그냥 간단한 DFS 문제이다.`
TestCase:
2 4
CAAB
ADEM
=> 6
소스 코드:
더보기
#include <iostream>
#include <cmath>
#include <algorithm>
#include <string>
#include <vector>
#include <stack>
#include <string.h>
using namespace std;
int n, m,res;
char arr[22][22];
bool visit[22][22],exist[26];
int dx[4] = { 1,0,-1,0 };
int dy[4] = { 0,1,0,-1 };
void func(int x, int y, int cnt=1) {
for (int i = 0; i < 4; i++) {
int curx = x + dx[i];
int cury = y + dy[i];
if (curx < 0 || curx >= n || cury < 0 || cury >= m||visit[curx][cury]) continue;
if (exist[arr[curx][cury] - 'A']) continue;
visit[curx][cury] = true;
exist[arr[curx][cury] - 'A'] = true;
func(curx, cury, cnt + 1);
visit[curx][cury] = false;
exist[arr[curx][cury] - 'A'] = false;
}
res = max(res, cnt);
}
int main() {
ios::sync_with_stdio(false);
cin.tie(NULL);
cout.tie(NULL);
cin >> n >> m;
for (int i = 0; i < n; i++) {
for (int j = 0; j < m; j++) {
cin >> arr[i][j];
}
}
visit[0][0] = true;
exist[arr[0][0] - 'A'] = true;
func(0,0);
cout << res << '\n';
return 0;
}
반응형
'Algorithm > 백트래킹 (Backtracking)' 카테고리의 다른 글
[BOJ] 1248 맞춰봐 (0) | 2020.05.13 |
---|---|
(BOJ) 3109 빵집 (0) | 2019.02.02 |
(BOJ) 1941 소문난 칠공주 (테스트케이스有) (0) | 2019.02.02 |
(BOJ) 2210 숫자판 점프 (0) | 2019.02.01 |
(BOJ) 1339 단어수학 (0) | 2019.02.01 |
Comments