일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- DenseDepth
- 마법의숲탐색
- 수영대회결승전
- 싸움땅
- 시뮬레이션
- 토끼와 경주
- 나무박멸
- Calibration
- 조합
- ros
- 이진탐색
- 코드트리빵
- 백준
- 구현
- 3Dreconstruction
- 소프티어
- dfs
- BFS
- 왕실의기사대결
- 순서대로방문하기
- DP
- 마이크로프로세서
- 슈퍼컴퓨터클러스터
- 코드트리
- 루돌프의반란
- 포탑부수기
- ICER
- ARM
- ISER
- 삼성기출
Archives
- Today
- Total
목록로봇청소기 (1)
from palette import colorful_colors
[백준] 14503 로봇 청소기 with C++ (삼성기출)
주어진대로 침착하게 구현만 하면 해결되는 문제! 딱히 알고리즘이 필요없는 쌩구현, 시뮬레이션 문제 #include #include using namespace std; int N, M; int dx[4] = {-1, 0, 1, 0}; int dy[4] = {0, 1, 0, -1}; int MAP[50][50]; int cnt; int curR, curC, direction; // 반시계 방향으로 value만큼 방향 변환 int directionChange(int direction, int value) { int temp = direction - value; if (temp < 0) temp += 4; return temp; } // 주변 4칸 중 먼지 찾기 함수 bool dustFind(int row, ..
알고리즘/문제풀이
2024. 2. 19. 03:39