일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- string 함수
- 알고리즘 공부방법
- Django의 편의성
- Django란
- iOS14
- 자료구조
- 입출력 패턴
- 연결요소
- k-eta
- scanf
- 이분그래프
- 입/출력
- UI한글변경
- vscode
- c++
- 매크로
- 장고란
- 표준 입출력
- EOF
- 시간복잡도
- 백준
- 프레임워크와 라이브러리의 차이
- 2557
- Django Nodejs 차이점
- 엑셀
- 구조체와 클래스의 공통점 및 차이점
- string 메소드
- correlation coefficient
- double ended queue
- getline
Archives
- Today
- Total
Storage Gonie
(11) [C, C++, Java] 백준 No.11053 : 가장 긴 증가하는 부분 수열 본문
알고리즘/백준풀이6. 다이나믹프로그래밍
(11) [C, C++, Java] 백준 No.11053 : 가장 긴 증가하는 부분 수열
Storage Gonie 2019. 5. 15. 16:55반응형
문제
풀이
자세한 풀이 : https://ldgeao99.tistory.com/entry/챕터3-11-DP-문제-풀이3-1-백준-No2156-포
# C++
#include <iostream>
#include <algorithm>
#include <vector>
using namespace std;
int main() {
int n;
cin >> n;
vector<int> d(n);
vector<int> a(n);
for (int i=0; i<n; i++)
cin >> a[i];
for (int i=0; i<n; i++)
{
d[i] = 1;
for (int j=0; j<i; j++)
{
if (a[j] < a[i] && d[j]+1 > d[i])
d[i] = d[j]+1; // A[j] < A[i]를 만족하는 d 들 중 최대값 + 1이 들어감.
}
}
cout << *max_element(d.begin(),d.end()) << '\n';
return 0;
}
# C
#include <stdio.h>
int a[1000];
int d[1000];
int main() {
int n;
scanf("%d",&n);
for (int i=0; i<n; i++) {
scanf("%d",&a[i]);
}
for (int i=0; i<n; i++) {
d[i] = 1;
for (int j=0; j<i; j++) {
if (a[j] < a[i] && d[i] < d[j]+1) {
d[i] = d[j]+1;
}
}
}
int ans = d[0];
for (int i=0; i<n; i++) {
if (ans < d[i]) {
ans = d[i];
}
}
printf("%d\n",ans);
return 0;
}
# Java
import java.util.*;
public class Main {
public static void main(String args[]) {
Scanner sc = new Scanner(System.in);
int n = sc.nextInt();
int[] a = new int[n];
for (int i=0; i<n; i++) {
a[i] = sc.nextInt();
}
int[] d = new int[n];
for (int i=0; i<n; i++) {
d[i] = 1;
for (int j=0; j<i; j++) {
if (a[j] < a[i] && d[i] < d[j]+1) {
d[i] = d[j]+1;
}
}
}
int ans = d[0];
for (int i=0; i<n; i++) {
if (ans < d[i]) {
ans = d[i];
}
}
System.out.println(ans);
}
}
반응형
'알고리즘 > 백준풀이6. 다이나믹프로그래밍' 카테고리의 다른 글
(13) [C++, Java] 백준 No.11722 : 가장 긴 감소하는 부분 수열 (0) | 2019.05.15 |
---|---|
(12) [C, C++, Java] 백준 No.11055 : 가장 큰 증가 부분 수열 (0) | 2019.05.15 |
(10) [C++, Java] 백준 No.2156 : 포도주 시식 (0) | 2019.05.09 |
(9) [C++, Java] 백준 No.9465 : 스티커 (0) | 2019.05.09 |
(8) [C++, Java] 백준 No.11057 : 오르막 수 (0) | 2019.05.09 |
Comments