제출 #380814

#제출 시각아이디문제언어결과실행 시간메모리
380814anonymousGroup Photo (JOI21_ho_t3)C++14
100 / 100
649 ms98700 KiB
#include <iostream>
#define MAXN 5005
using namespace std;

int N, H[MAXN], pos[MAXN];
int psum[MAXN][MAXN],dp[MAXN];

int main() {
    scanf("%d",&N);
    for (int i=1; i<=N; i++) {
        scanf("%d",&H[i]);
        pos[H[i]] = i;
    }
    //do prefix sum
    for (int i=1; i <= N; i++) {
        for (int h=1; h <= N; h++) {
            psum[i][h] = psum[i-1][h] + psum[i][h-1] + (H[i] == h) - psum[i-1][h-1];
        }
    }

    //dp
    for (int i=N-1; i>=1; i--) {
        dp[i] = 1<<30; //subsequence i...N
        int cost = 0;
        for (int j=i; j <= N; j++) {
            cost += 2*(psum[pos[j]][j-1]-psum[pos[j]][i-1])-(j-i)+(psum[pos[j]][N]-psum[pos[j]][j]);
            dp[i] = min(dp[i], dp[j+1] + cost);
        }
    }

    printf("%d",dp[1]);
}

컴파일 시 표준 에러 (stderr) 메시지

Main.cpp: In function 'int main()':
Main.cpp:9:10: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
    9 |     scanf("%d",&N);
      |     ~~~~~^~~~~~~~~
Main.cpp:11:14: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
   11 |         scanf("%d",&H[i]);
      |         ~~~~~^~~~~~~~~~~~
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...