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
- englishbook
- 쉬운 알고리즘 문제
- dfs
- 코테 대비
- 코테
- the midnight library
- nightroutine
- SQL
- sw expert academy
- 원서
- D4
- PyQt
- 코테 준비
- sw expert
- 직무면접
- 삼성
- swexpertacademy
- 원서읽기
- 완전탐색
- 알고리즘
- MySQL
- 알고리즘 문제
- 코딩테스트
- English
- readingbook
- BFS
- 원서읽자
- 백준
- STUDYENGLISH
- 프로그래머스
Archives
- Today
- Total
목록14891 (1)
시나브로
14891. 톱니바퀴
#include using namespace std; int check[6] = { 0 }; //돌려야되는 것을 체크 int wheel[6][10] = { 0 }; void right(int i) { // 오른쪽에 돌려야 되는 것이 있는 지 확인한다. if (i ==5) return; if (wheel[i - 1][2] != wheel[i][6]) { if (check[i - 1] == -1) check[i] = 1; else check[i] = -1; right(i + 1); } } void left(int i) { // 왼쪽에 돌려야되는 것이 잇는 지 확인한다. if (i == 0) return; if (wheel[i + 1][6] != wheel[i][2]) { if (check[i + 1] == ..
알고리즘/백준
2020. 10. 14. 22:36