일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- Calibration
- 백준
- 포탑부수기
- 삼성기출
- 조합
- dfs
- ros
- 왕실의기사대결
- DP
- 루돌프의반란
- 코드트리
- 싸움땅
- 나무박멸
- ARM
- ISER
- 슈퍼컴퓨터클러스터
- ICER
- 이진탐색
- 3Dreconstruction
- 마법의숲탐색
- 순서대로방문하기
- 구현
- 소프티어
- 수영대회결승전
- 토끼와 경주
- 마이크로프로세서
- BFS
- 코드트리빵
- 시뮬레이션
- DenseDepth
Archives
- Today
- Total
목록드래곤커브 (1)
from palette import colorful_colors
[백준] 15685 드래곤 커브 with C++ (삼성기출)
시계방향 rotation 구현을 생각해내느라 헤맸다. 다행히 예제만 맞으면 무난하게 통과가 가능한 문제인 것 같다,,? 구현 방법은 주석 참고 #include #include #include using namespace std; int N, answer; int MAP[101][101]; int dx[4] = { 1, 0, -1, 0 }; int dy[4] = { 0, -1, 0, 1 }; struct coordinate { int x; int y; }; coordinate rotate(int baseX, int baseY, int x, int y) { coordinate newCool; int gapX = x - baseX; int gapY = y - baseY; newCool.y = baseY + g..
알고리즘/문제풀이
2024. 2. 19. 03:35