알고리즘/프로그래머스
Programers 땅따먹기 / C++
https://school.programmers.co.kr/learn/courses/30/lessons/12913 프로그래머스 코드 중심의 개발자 채용. 스택 기반의 포지션 매칭. 프로그래머스의 개발자 맞춤형 프로필을 등록하고, 나와 기술 궁합이 잘 맞는 기업들을 매칭 받으세요. programmers.co.kr 아이디어 DP를 이용하여 이전 열에서의 최댓값을 더 해가며 찾을 수 있습니다. #include #include using namespace std; int max(int a, int b) { return a > b ? a : b; } int findMax(vector& v, int idx) { int temp = 0; for (int i = 0; i < 4; i++) { //중복은 제외 if (i..
2022. 12. 3.