[swea] 1206. View / python 파이썬
코드 T = 10 for tc in range(1, T+1): N = int(input()) b_lst = list(map(int, input().split())) # 빌딩리스트 # 변수초기화 cnt = 0 # 앞 뒤 0 두개 뺀 상태에서 for 문 돌면서 for i in range(2, N-2): # 왼쪽 2개보다 크고 & 오른쪽 두개보다 크면 if b_lst[i] > b_lst[i-1] and b_lst[i] > b_lst[i-2] and b_lst[i] > b_lst[i+1] and b_lst[i] > b_lst[i+2]: # 양 옆 애들 중 높이 가장 높은 애 만큼 빼주고 카운팅 해줌 # 값 차이가 가장 적은 애가 높이가 가장 높기 때문에 반복문 돌려서 두번째로 높은애 찾음 a1 = b_lst[i..
algorithm/swea
2021. 4. 9. 00:33
글 보관함
TAG
- BFS
- Python
- 삼성기출
- merge 에러
- 2018 카카오 공채
- 삼성코테
- merge에러
- swea
- 20056 마법사 상어와 파이어볼
- 2579 계단오르기
- 알고리즘
- git 미러링
- 21609 상어 중학교
- 기지국설치
- 20057 마법사 상어와 토네이도
- 보석쇼핑
- 영어끝말잇기
- dfs
- 파이썬
- 브루트포스
- 17406 배열돌리기4
- dp
- react
- 백준
- 프로그래머스
최근에 올라온 글
- Total
- Today
- Yesterday
최근에 달린 댓글