HDU 1950 Bridging signals(DP Dynamic Planning O(n^2))
#include <stdio.h>
#define MAX_POARTS 40000
int numOfTests;
int numOfPorts;
int arrayOfPorts[MAX_POARTS + 1];
//lenOfIS[index] arrayOfPorts index , arrayOfPorts[index] " "
int lenOfIS[MAX_POARTS + 1];//length of increasing subsequence
int result;//length of increasing subsequence
int main(){
scanf("%d", &numOfTests);
int test;
for (test = 1; test <= numOfTests; test++){
scanf("%d", &numOfPorts);
int indexOfPort;
for (indexOfPort = 1; indexOfPort <= numOfPorts; indexOfPort++)
scanf("%d", &arrayOfPorts[indexOfPort]);
result = 0;
for (indexOfPort = 1; indexOfPort <= numOfPorts; indexOfPort++){
lenOfIS[indexOfPort] = 1;
int indexOfBefore;
for (indexOfBefore = 1; indexOfBefore < indexOfPort; indexOfBefore++)
if (arrayOfPorts[indexOfBefore] < arrayOfPorts[indexOfPort] && lenOfIS[indexOfBefore] + 1 > lenOfIS[indexOfPort])
lenOfIS[indexOfPort] = lenOfIS[indexOfBefore] + 1;
if (lenOfIS[indexOfPort] > result)
result = lenOfIS[indexOfPort];
}
printf("%d
", result);
}
return 0;
}
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
01 가방, 완전 가방, 다중 가방 dp(동적 기획 입문 dp)01 가방은 2진법으로 직접 표시할 수 있지만 데이터 양이 너무 많으면 시간을 초과하는 것이 폭력이다.01 가방의 사상은 바로 이 물품에 대해 내가 넣은 가치가 큰지 안 넣은 가치가 큰지 비교하여 방정식 f[i][v...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.