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
- 두 동전
- 데이터
- 16197
- Android
- mysql
- 백준
- insert
- Java
- git
- github
- broadcastreceiver
- 단축키
- ubuntu
- 큐빙
- goland
- activity
- 데이터전달
- intent
- 안드로이드
- 17837
- 프로그래머스
- 알고리즘
- IntelliJ
- Jenknis
- data
- Algorithm
- spring
- 제어반전
- service
- vscode
Archives
- Today
- Total
목록인구이동 (1)
해보자
백준_16234번_인구 이동
소스코드 #include #include #include using namespace std; int N, L, R; int map[50][50]; // map bool visited[50][50] = { false }; // 상하좌우 int dy[4] = { 1,-1,0,0 }; int dx[4] = { 0,0,1,-1 }; bool bfs(int y, int x) { vector friends; queue q; visited[y][x] = true; friends.push_back({ y,x }); q.push({ y, x }); int total = 0; while (!q.empty()) { int cy = q.front().first; int cx = q.front().second; q.pop()..
C++/Solve & Think
2020. 10. 8. 02:22