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 |
Tags
- 혼공머신
- 브라이틱스
- 혼공
- 삼성SDS
- 혼공학습단
- Brigthics
- 영상제작기
- 포스코 아카데미
- 삼성SDS Brightics
- 노코드AI
- Brigthics Studio
- 포스코 청년
- 팀 분석
- Brightics를 이용한 분석
- 개인 의료비 예측
- 데이터 분석
- 브라이틱스 서포터즈
- 데이터분석
- 직원 이직여부
- 삼성 SDS
- 혼공머신러닝딥러닝
- 삼성SDS Brigthics
- 삼성 SDS Brigthics
- Brightics Studio
- 모델링
- Brigthics를 이용한 분석
- 캐글
- 직원 이직률
- 추천시스템
- Brightics
Archives
- Today
- Total
데이터사이언스 기록기📚
[백준/Python] 16938번(브루트포스 알고리즘)_캠프 준비 본문
📌문제 유형
브루트포스 알고리즘, 비트마스킹, 백트래킹 (골드 Lv.5)
📌문제
📌나의 문제풀이
- combination 활용해서 문제구성 조합 만들기
- 문제 난이도 합, 문제 난이도 범위 확인하
from itertools import combinations
n,l,r,x = map(int,input().split())
level_list = list(map(int,input().split()))
cnt = 0
for i in range(2,n+1):
combination = list(combinations(level_list,i))
for c in range(len(combination)):
combi = sorted(combination[c])
if combi[-1] - combi[0] >= x and l <= sum(combi) <= r:
cnt += 1
print(cnt)
📌 다른사람의 문제풀이
- 똑같은 풀이
from itertools import combinations
N, L, R, X = map(int, input().split())
difficulty = list(map(int, input().split()))
count = 0
for i in range(2,N+1):
difficultyComb = list(combinations(difficulty,i))
for j in difficultyComb:
if L<=sum(j)<= R and max(j)-min(j) >= X:
count+=1
print(count)
📌 리뷰
- 최대, 최소값만 필요한 경우 sorted() 앞뒤값 찾는 것보다 min,max 활용하기
728x90
'Coding Test > 백준(Python)' 카테고리의 다른 글
[백준/Python] 11559번(BFS)_Puyo Puyo (0) | 2023.09.14 |
---|---|
[백준/Python] 2458번(DFS)_키 순서 (0) | 2023.09.12 |
[백준/Python] 7576번(BFS)_토마토 (0) | 2023.09.08 |
[백준/Python] 2116번(구현, 브루트포스)_주사위 쌓기 (0) | 2023.09.05 |
[백준/Python] 13164번(그리디,정렬)_행복 유치원 (0) | 2023.09.05 |
Comments