Evolution Game
2247 단어 동적 기획
입력
The first line contains two integers, N and w, that indicate, respectively, the maximum eye number, and the maximum eye difference allowed in a change (1 ≤ N ≤ 5000; 0 ≤ w ≤ N). The next line contains N integers which represent the number of horns in each form. I.e. the ith number, h(i), is the number of horns the form with i eyes has (1 ≤ h(i) ≤ 1 000 000).
출력
For each test case, display one line containing the maximum possible number of changes.
샘플 입력
샘플 데이터 복사
5 5
5 3 2 1 4
샘플 출력
4
프롬프트
Start with 1 horn and 4 eyes, and it can change 4 times: (1 horn 4 eyes) -> (2 horns 3 eyes) -> (3 horns 2 eyes) -> (4 horns 5 eyes) -> (5 horns 1 eye).
ps:dp, 뒤에서 앞으로 옮겨다니며 모든 상태를 업데이트하고 최대치를 찾습니다
#include
#include
using namespace std;
const int inf=1e9,N=5555;
int a[N];
int dp[N];
int main()
{
int n,w,x=0;
int ans=0;
cin>>n>>w;
for(int i=1;i<=n;i++){
scanf("%d",&a[i]);
if(a[i]>a[x]) x=i;
}
int m=n;
while(m--){
for(int i=1;i<=n;i++){
if(a[i]a[x]) x=i;
}
}
cout<
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 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에 따라 라이센스가 부여됩니다.