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
- 파이썬
- 커스텀알락
- 자바스크립트
- TCPvsUDP
- Python
- yarn-berry
- firebaseui
- 파이어베이스로그인
- react-native
- youtube iframe
- nvm
- css
- 구조분해할당
- nvmrc
- iP
- 기초
- Next.js
- leetcode977
- 커스텀알림
- leetcode189
- Rest
- React
- Spread
- mac
- 다리놓기
- 리액트
- react-firebaseui
- 백준
- JS
- 프로토타입
Archives
- Today
- Total
JadeCode
[백준] python 1010 다리 놓기 본문
https://www.acmicpc.net/problem/1010
풀이법
다이나믹 프로그래밍
1. 30 * 30 배열을 만든다
2. 아래의 그림과 같이 생각한다.
코드
import sys
input = sys.stdin.readline
t = int(input())
dp = [[0 for _ in range(30)]for _ in range(30)]
for i in range(1, 30):
for j in range(1, 30):
if i == 1:
dp[i][j] = j
elif i == j:
dp[i][j] = 1
else:
if j > i:
dp[i][j] = dp[i-1][j-1]+dp[i][j-1]
for _ in range(0, t):
n, m = map(int, input().split(' '))
print(dp[n][m])
'개발 > 알고리즘' 카테고리의 다른 글
[백준] python 2739 구구단 (0) | 2022.02.25 |
---|---|
[Python] 개념정리 - for문 index, value 접근 (0) | 2022.02.17 |
[백준] python 1018 체스판 다시 칠하기 (0) | 2022.01.24 |
백준 1010 javascript (node js) (0) | 2022.01.14 |
자바스크립트로 백준 풀기 (0) | 2021.11.22 |
Comments