Bellovin HDU - 5748(최대 상승 하위 시퀀스)
2361 단어 #기본 DP(동적 계획)
HDU - 5748
Peter has a sequence a1,a2,...,an and he define a function on the sequence -- F(a1,a2,...,an)=(f1,f2,...,fn), where fi is the length of the longest increasing subsequence ending with ai. Peter would like to find another sequence b1,b2,...,bn in such a manner that F(a1,a2,...,an) equals to F(b1,b2,...,bn). Among all the possible sequences consisting of only positive integers, Peter wants the lexicographically smallest one. The sequence a1,a2,...,an is lexicographically smaller than sequence b1,b2,...,bn, if there is such number i from 1 to n, that ak=bk for 1≤k.
Input There are multiple test cases. The first line of input contains an integer
T, indicating the number of test cases. For each test case:
The first contains an integer
n
(1≤n≤100000) -- the length of the sequence. The second line contains
n integers
a1,a2,...,an
(1≤ai≤109). Output For each test case, output
n integers
b1,b2,...,bn
(1≤bi≤109)denoting the lexicographically smallest sequence.
Sample Input
3
1
10
5
5 4 3 2 1
3
1 3 5
Sample Output 1
1 1 1 1 1
1 2 3
제목: n개의 숫자로 a 서열을 표시하고, 사전 서열이 가장 작은 b 서열의 모든 위치의 LIS는 a 서열과 같다
사고방식: 사전 서열이 가장 작으면 사실 a 서열의LIS이다. 그의 사상은 가장 긴 상승자 시리즈의lower 에서 비롯된다.bound의 최적화 최장 상승 서열 문제 l
#include
#include
#include
#include
#define INF 0x3f3f3f3f
using namespace std;
int a[100100];
int dp[100100];//dp[i] i
int ans[100100];
int n;
int main(){
int t;
scanf("%d",&t);
while(t--){
scanf("%d",&n);
int i;
for(i = 1; i <= n; i++){
scanf("%d",&a[i]);
dp[i] = INF;
}
int pos;
// ,
for(i = 1; i <= n; i++){
pos = lower_bound(dp+1,dp+1+n,a[i])-dp;//
ans[i] = pos;//
dp[pos] = a[i];// dp
}
for(i = 1; i <= n; i++){
if(i==1)
printf("%d",ans[i]);
else
printf(" %d",ans[i]);
}
printf("
");
}
return 0;
}
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
Rails Turbolinks를 페이지 단위로 비활성화하는 방법원래 Turobolinks란? Turbolinks는 링크를 생성하는 요소인 a 요소의 클릭을 후크로 하고, 이동한 페이지를 Ajax에서 가져옵니다. 그 후, 취득 페이지의 데이터가 천이 전의 페이지와 동일한 것이 있...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.