반응형
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 | 31 |
Tags
- 컴퓨터 비전
- OpenGL
- cs231n
- logistic regression
- CPP
- Computer Vision
- SGD
- Kaggle
- SVM
- petal to metal
- Support Vector Machine
- Unsupervised learning
- Vision
- 컴퓨터 그래픽스
- 비용함수
- 백준
- recommender system
- 로지스틱 회귀
- neural network
- 파이썬
- Regularization
- pre-trained
- 인공지능
- CNN
- 그래픽스
- 머신러닝
- 딥러닝
- C++
- 신경망
- 추천 시스템
Archives
- Today
- Total
kwan's note
백준 1010번 다리놓기 파이썬 (python code) 본문
반응형
1010번
실버5
조합문제이다.
그냥 C(M,N)로 풀면된다.
풀이1(comb 사용)
import math
T= int(input())
for i in range(T):
N,M=map(int,input().split())
print(math.comb(M,N))
풀이2(comb사용 x)
import math
T= int(input())
for i in range(T):
N,M=map(int,input().split())
answer=1
for _ in range(N):
answer*=M
M-=1
print(answer//math.factorial(N))
하지만 주의할점은 factorial(M)/ factorial(M-N)factorial(N)
으로 풀면 시간이 오래걸린다.( M의 facotrial을 다 구해야 하기 때문)
반응형
'Algorithm > python' 카테고리의 다른 글
백준 2217번 로프 파이썬 (python code) (0) | 2021.01.21 |
---|---|
백준 11758번 CCW 파이썬 (python code) (0) | 2021.01.17 |
백준 2981번 검문 파이썬 (python code) (1) | 2021.01.16 |
백준 2609번 최대공약수 최소공배수 파이썬 (python code) (0) | 2021.01.15 |
백준 1931번 회의실 배정 파이썬 (python code) (0) | 2021.01.15 |