답안 #887275

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
887275 2023-12-14T07:23:33 Z Hovhannes1234 K개의 묶음 (IZhO14_blocks) C++17
컴파일 오류
0 ms 0 KB
#include <bits/stdc++.h>
using namespace std;

const int N=1e5;
int n,k;
int a[N], dp[N][N];

int main() {
	cin>>n>>k;
	for(int i=1; i<=n; i++){
		cin>>a[i];
		dp[i][1]=max(a[i], dp[i-1][1]);
	}
	dp[0][1]=0;
	for(int j=2; j<=k; j++){
		for(int i=j; i<=n; i++){
			int mx=a[i];
			dp[i][j]=dp[i-1][j-1]+mx;
			for(int c =i-2; c >= j - 1; c--){
				mx=max(mx, a[c+1]);
                dp[i][j] = min(dp[i][j], dp[c][j-1]+mx);
			}
		}
	}
	cout<<dp[n][k];
}

Compilation message

/usr/bin/ld: failed to convert GOTPCREL relocation; relink with --no-relax
collect2: error: ld returned 1 exit status