일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- 순서대로방문하기
- 싸움땅
- ICER
- 나무박멸
- 루돌프의반란
- 포탑부수기
- 마법의숲탐색
- 슈퍼컴퓨터클러스터
- 조합
- Calibration
- 구현
- 이진탐색
- ISER
- DP
- 수영대회결승전
- 코드트리빵
- 삼성기출
- 마이크로프로세서
- 백준
- 3Dreconstruction
- 코드트리
- BFS
- dfs
- 왕실의기사대결
- 시뮬레이션
- ros
- 토끼와 경주
- 소프티어
- DenseDepth
- ARM
Archives
- Today
- Total
목록아기상어 (1)
from palette import colorful_colors
[백준] 16236 아기상어 with C++
구조체 사용, sort를 이용한 벡터 정렬 사용 BFS, 정렬 연습에 좋은 문제! #include #include #include #include #include using namespace std; int N, startY, startX; int MAP[21][21]; int visited[21][21]; int dy[4] = { -1, 1, 0, 0 }; int dx[4] = { 0, 0, 1, -1 }; int babyShark = 2; int mapTime, feedCnt; struct fish { int dist; int y; int x; }; struct Node { int y; int x; }; bool compare(fish a, fish b) {// 나중에 fishes 벡터를 정렬하기 위..
알고리즘/문제풀이
2024. 2. 22. 17:54