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
- 완전탐색
- 원서읽기
- BFS
- 알고리즘 문제
- 알고리즘
- 원서
- 원서읽자
- 삼성
- SQL
- D4
- 코테
- STUDYENGLISH
- sw expert
- 코테 대비
- 코테 준비
- the midnight library
- MySQL
- 프로그래머스
- dfs
- 쉬운 알고리즘 문제
- 백준
- English
- 코딩테스트
- readingbook
- PyQt
- nightroutine
- 직무면접
- sw expert academy
- swexpertacademy
- englishbook
Archives
- Today
- Total
목록배열의 분할 (1)
시나브로
[D5] 9015. 배열의 분할
각 시점마다 오름차순인지 내림차순인지 확인해서 이전꺼와 다르다면 새로운 묶음으로 본다는 것에서 포인트를 얻어서 풀었다. #include #include #include #include using namespace std; int list[100010]; int signal = -1; void search_signal(int i) { if (list[i] list[i+1]) { signal = 2; } else { signal = 0; } } int main(void) { freopen("inp.inp", "r", stdin); freopen("out.out", "w", stdout); int tc = 0; cin >> ..
알고리즘/SW Expert Academy
2020. 3. 18. 20:08