[백준] 2407 - 조합
https://www.acmicpc.net/problem/2407 2407번: 조합 n과 m이 주어진다. (5 ≤ n ≤ 100, 5 ≤ m ≤ 100, m ≤ n) www.acmicpc.net 1 2 3 4 from math import factorial n, m = map(int, input().split()) print(factorial(n) // (factorial(n - m) * factorial(m))) cs 그냥 하라는거 하면 된다. 혹시 조합 nCr 계산을 못하는 분이 계실까 하여 추가로 공식을 알려드리면
algorithm'''problem solve
2020. 10. 27. 13:04
[백준] 15650 - N과 M (2) (백트래킹, 조합, combinations)
https://www.acmicpc.net/problem/15650 15650번: N과 M (2) 한 줄에 하나씩 문제의 조건을 만족하는 수열을 출력한다. 중복되는 수열을 여러 번 출력하면 안되며, 각 수열은 공백으로 구분해서 출력해야 한다. 수열은 사전 순으로 증가하는 순서로 출력해 www.acmicpc.net 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 from itertools import combinations from copy import deepcopy n, m = map(int, input().split()) # for comb in combinations(range(1, n + 1), m): # for i in comb: ..
algorithm'''problem solve
2020. 10. 23. 20:53
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
링크
TAG
- 오픈소스
- c++
- webOS
- 프로그래머스
- 플로이드 와셜
- BaekJoon
- PyPy3
- 브루트포스
- 구현
- 완전탐색
- 피보나치
- 한화큐셀
- 컨트리뷰톤
- BFS
- 카카오
- 1932
- 동적 계획법
- 파이썬
- 정렬
- 백준
- 알고리즘
- DP
- LG
- Dynamic Programming
- 이분탐색
- 인공지능
- DFS
- c
- 코딩
- 백트래킹
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
글 보관함