Notice
Recent Posts
Recent Comments
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
- git
- insert
- Jenknis
- service
- Java
- IntelliJ
- 17837
- activity
- broadcastreceiver
- 안드로이드
- ubuntu
- 두 동전
- 프로그래머스
- 데이터
- Algorithm
- spring
- vscode
- github
- 큐빙
- 제어반전
- Android
- 알고리즘
- 백준
- mysql
- 데이터전달
- intent
- 단축키
- 16197
- data
- goland
Archives
- Today
- Total
목록16236 (1)
해보자
백준_16236번_아기상어
소스코드 #include #include #include using namespace std; struct pos { int y, x, d; }; struct fishes { int y, x, size, d; }; int map[20][20]; int N; pos shark; int dy[4] = { 0,0,-1,1 }; int dx[4] = { -1,1,0,0 }; int move(int size) { pos start = { shark.y, shark.x, 0 }; // 상어 초기 위치 queue q; // 상어의 위치 q.push(start); bool visited[20][20] = { false }; vector vf; // 크기, y, x // 먹을 수 있는 물고기 추출 while (!q.em..
C++/Solve & Think
2020. 10. 9. 15:30