반응형
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
- petal to metal
- logistic regression
- pre-trained
- neural network
- Unsupervised learning
- 머신러닝
- 컴퓨터 비전
- CNN
- 딥러닝
- SGD
- 신경망
- Kaggle
- 로지스틱 회귀
- 컴퓨터 그래픽스
- recommender system
- Support Vector Machine
- 파이썬
- CPP
- Regularization
- 인공지능
- C++
- SVM
- 백준
- Computer Vision
- Vision
- 추천 시스템
Archives
- Today
- Total
kwan's note
백준 1149번 RGB거리 파이썬 (python code) 본문
반응형
난이도: 실버1
번호: 1149번
DP 문제인데 이것도 그리디한 방식으로 접근했다가 다시 돌아왔다.
다이나믹프로그래밍이 아직 익숙하지 않은것같다.
각 줄에 대해 최소합으로 최신화시키면서 나아가고 마지막에 min을 취해 결과값을 얻었다.
from sys import stdin
N = int(stdin.readline().rstrip())
paint=[0]*N
for i in range(0,N):
paint[i] = list(map(int,stdin.readline().split()))
for i in range(1, N):
paint[i][0] = min(paint[i - 1][1], paint[i - 1][2]) + paint[i][0]
paint[i][1] = min(paint[i - 1][0], paint[i - 1][2]) + paint[i][1]
paint[i][2] = min(paint[i - 1][0], paint[i - 1][1]) + paint[i][2]
print(min(paint[N - 1][0], paint[N - 1][1], paint[N - 1][2]))
반응형
'Algorithm > python' 카테고리의 다른 글
백준 9251번 LCS 파이썬 (python code) (0) | 2021.01.15 |
---|---|
백준 11053번 가장 긴 증가하는 부분 수열 (Lis) 파이썬 (python code) (0) | 2021.01.15 |
백준 12865번 평범한 배낭(냅색) 파이썬 (python code) (0) | 2021.01.14 |
백준 1003번 피보나치 파이썬 (python code) (0) | 2021.01.14 |
백준 11047번 동전0 파이썬 (python code) (0) | 2021.01.14 |