POJ2533 LIS 템플릿 문제
6513 단어 DP
POJ2533
최장 상승 서열 템플릿 문제
Description
A numeric sequence of ai is ordered if a1 < a2 < … < aN. Let the subsequence of the given numeric sequence ( a1, a2, …, aN) be any sequence ( ai1, ai2, …, aiK), where 1 <= i1 < i2 < … < iK <= N. For example, sequence (1, 7, 3, 5, 9, 4, 8) has ordered subsequences, e. g., (1, 7), (3, 4, 8) and many others. All longest ordered subsequences are of length 4, e. g., (1, 3, 5, 8).
Your program, when given the numeric sequence, must find the length of its longest ordered subsequence.
Input
The first line of input file contains the length of sequence N. The second line contains the elements of sequence - N integers in the range from 0 to 10000 each, separated by spaces. 1 <= N <= 1000
Output
Output file must contain a single integer - the length of the longest ordered subsequence of the given sequence.
Sample Input
7 1 7 3 5 9 4 8
Sample Output
4
코드 1
n^2
#include
#include
#include
#include
using namespace std;
int a[1005],b[1005];
int main()
{
int n;
while (scanf("%d",&n)!=EOF)
{
memset(a,0,sizeof(a));
memset(b,0,sizeof(b));
for (int i = 0;iscanf("%d",&a[i]);
b[0] = 1;
for (int i = 0;i1;
for (int j = 0;jif (a[i] > a[j] && b[j]+1 > b[i])
b[i] = b[j] + 1;
}
}
int maxn = b[0];
for (int i = 0;iif (b[i] > maxn)
maxn = b[i];
printf("%d
",maxn);
}
}
코드 2
nlogn
#include
#include
#include
#include
using namespace std;
int find(int *a,int len,int n)
{
int left = 0,right = len,mid = (left+right)/2;
while (left <= right)
{
if (n > a[mid])
left = mid+1;
else if (n < a[mid])
right = mid - 1;
else
return mid;
mid = (left + right) / 2;
}
return left;
}
int main()
{
int i,j,n,a[100],c[100],len;
while(scanf("%d",&n))
{
for (int i = 0;i"%d",&a[i]);
c[0] = -1;
c[1] = a[0];
len = 1;
for (int i = 1;ilen,a[i]);
c[j] = a[i];
if (j > len)
len = j;
}
printf("%d
",len);
}
}
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
[BOJ]11048(python)python 풀이 DP를 이용해 풀이 보통 이런 문제는 dfs나 bfs로 풀이하는 것이여서 고민을 했는데 이 문구 덕분에 DP 를 이용해 풀이할 수 있었다 뒤로 돌아가는 등의 경우를 고려하지 않아도 되기 때문이다 코...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.