250x250
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
- 스택
- 리소스모니터링
- 스프링부트
- JPA
- priority_queue
- string
- List
- CSS
- deque
- NIO
- Calendar
- map
- Properties
- GC로그수집
- math
- alter
- BFS
- sql
- date
- Java
- javascript
- spring boot
- dfs
- 힙덤프
- scanner
- union_find
- set
- Union-find
- html
- 큐
Archives
- Today
- Total
목록백준 #1100번 (1)
매일 조금씩
[C++] 백준 1100번 : 하얀 칸
가로세로 8칸이 주어졌기 때문에 vector를 사용해도 되지만 배열을 사용하여 쉽게 해결 가능하다. 흰칸의 가로,세로 인덱스의 합을 2로 나누면 나머지가0이라는 것을 이용하면 조건문 작성이 쉽다. (0,0)의 경우엔 나머지가 2인것도 생각해야한다. #include #include #include using namespace std; int main(void){ char arr[8][8]; int count = 0; for (int i = 0; i arr[i][j]; if (arr[i][j] == 'F') { if ((i + j) % 2 == 0 || (i + j) % 2 == 2) count++; } } } cout
알고리즘
2019. 12. 4. 23:39