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 |
Tags
- 쉬운 알고리즘 문제
- 직무면접
- readingbook
- English
- nightroutine
- 코딩테스트
- 완전탐색
- the midnight library
- 원서
- MySQL
- 백준
- BFS
- 삼성
- sw expert
- 코테 준비
- dfs
- STUDYENGLISH
- 프로그래머스
- SQL
- 코테
- 코테 대비
- 원서읽기
- englishbook
- 알고리즘
- D4
- 알고리즘 문제
- sw expert academy
- swexpertacademy
- 원서읽자
- PyQt
Archives
- Today
- Total
목록삼성 기출 (5)
시나브로
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