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
- englishbook
- sw expert
- nightroutine
- PyQt
- MySQL
- STUDYENGLISH
- 코딩테스트
- 원서
- 알고리즘
- 직무면접
- 코테 준비
- sw expert academy
- 삼성
- 원서읽자
- 완전탐색
- the midnight library
- 쉬운 알고리즘 문제
- English
- swexpertacademy
- BFS
- 백준
- 코테 대비
- 프로그래머스
- dfs
- D4
- SQL
- 알고리즘 문제
- 원서읽기
Archives
- Today
- Total
시나브로
[D5] 9015. 배열의 분할 본문
728x90
각 시점마다 오름차순인지 내림차순인지 확인해서 이전꺼와 다르다면 새로운 묶음으로 본다는 것에서 포인트를 얻어서 풀었다.
#include<iostream>
#include<stdio.h>
#include<algorithm>
#include<vector>
using namespace std;
int list[100010];
int signal = -1;
void search_signal(int i) {
if (list[i] < list[i+1]) {
signal = 1;
}
else 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 >> tc;
for (int q = 0; q < tc; q++) {
int n = 0;
cin >> n;
for (int i = 0; i < n; i++) {
cin >> list[i];
}
int count = 1;
search_signal(0);
for (int i = 1; i < n-1; i++) {
if (signal == 0) {
search_signal(i);
}
if (list[i] < list[i+1]) {
if (signal != 1) {
count++;
search_signal(++i);
}
}
else if (list[i] > list[i+1]) {
if (signal != 2) {
count++;
search_signal(++i);
}
}
}
cout << "#"<<q+1<<" "<<count<<endl;
}
return 0;
}
728x90
'알고리즘 > SW Expert Academy' 카테고리의 다른 글
9778. 카드 게임 (0) | 2020.05.19 |
---|---|
1859. 백만 장자 프로젝트 (0) | 2020.05.17 |
[D3] 9229. 한빈이와 Spot Mart (0) | 2020.03.10 |
[D3] 9280. 진용이네 주차타워 (0) | 2020.03.09 |
[D3] 9317. 석찬이의 받아쓰기 (0) | 2020.03.08 |
Comments