분류 전체보기132 사전을 찾아보다 look up ~ in a dictionary 2021. 7. 18. 화이팅 https://m.blog.naver.com/PostView.naver?isHttpsRedirect=true&blogId=kintex&logNo=221205116747 2021. 7. 18. 백준 1463번 : 1로 만들기 문제 링크 : https://www.acmicpc.net/problem/1463 풀이에 참고한 링크 : https://www.acmicpc.net/board/view/66915 내 풀이(2021.6.26.) : DP #include #include using namespace std; int dp[1000000]; int main() { int N; cin >> N; for (int i = 2; i 2021. 6. 26. 백준 2839번 : 설탕 배달 문제 링크 : https://www.acmicpc.net/problem/2839 내 풀이(2021.6.26.) : DP #include #include using namespace std; int dp[5001]; int main() { int N; cin >> N; dp[0] = 0; dp[1] = 0; dp[2] = 0; dp[3] = 1; dp[4] = 0; dp[5] = 1; for (int i = 6; i 2021. 6. 26. 이전 1 ··· 6 7 8 9 10 11 12 ··· 33 다음