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
- 프로그래머스
- nightroutine
- PyQt
- English
- 원서읽기
- 삼성
- 완전탐색
- SQL
- 쉬운 알고리즘 문제
- 알고리즘 문제
- readingbook
- the midnight library
- 알고리즘
- 코테
- 직무면접
- 코테 준비
- 원서
- 코테 대비
- D4
- 코딩테스트
- STUDYENGLISH
- BFS
- englishbook
- 원서읽자
- swexpertacademy
- MySQL
- 백준
- sw expert
- dfs
- sw expert academy
Archives
- Today
- Total
시나브로
[D3] 1206. [S/W 문제해결 기본] 1일차 - View 본문
728x90
#include<stdio.h>
#include<stdlib.h>
int main(void) {
int land[1001] = { 0 };
int problemnumber = 0, i = 0, q = 0;
for (i = 0; i < 10; i++) {
scanf( "%d", &problemnumber);
for (q = 0; q < problemnumber; q++) {
scanf( "%d ", &land[q]);
}
int good_building = 0;
for (q = 0; q < problemnumber; q++) {
if ((land[q] > land[q - 1] && land[q] > land[q - 2]) && (land[q] > land[q + 1] && land[q] > land[q + 2])) {
int max = 0,family=0;
if (max < land[q - 1])
max = land[q - 1];
if (max < land[q - 2])
max = land[q - 2];
if (max < land[q + 1])
max = land[q + 1];
if (max < land[q +2])
max = land[q +2];
family = land[q] - max;
good_building+=family;
}
}
printf( "#%d %d\n",i+1, good_building);
}
return 0;
}
728x90
'알고리즘 > SW Expert Academy' 카테고리의 다른 글
[D3] 7087. 문제 제목 붙이기 (0) | 2019.10.06 |
---|---|
[D4] 6719. 성수의 프로그래밍 강좌 시청 (0) | 2019.10.06 |
[D3] 6913. 동철이의 프로그래밍 대회 (0) | 2019.10.06 |
[D2] 2007. 패턴 마디의 길이 (0) | 2019.10.06 |
[D3] 3456. 직사각형 길이 찾기 (0) | 2019.10.06 |
Comments