HzuWHF


私信TA

用户名:I7I08I9047

访问量:77422

签 名:

我RUN了

等  级
排  名 18
经  验 20566
参赛次数 13
文章发表 127
年  龄 3
在职情况 学生
学  校 贺州学院
专  业

  自我简介:

        朴素区间 Dp O(n^3),这题需要四边形不等式优化成 O(n^2) 。



参考代码:

#ifndef LOCAL
	#include <bits/stdc++.h>
#endif
const int Inf = 0X3F3F3F3F;
typedef long long LL;
using namespace std;

namespace IO {
	inline LL read() {
		LL o = 0, f = 1; char c = getchar();
		while (c < '0' || c > '9') { if (c == '-') f = -1; c = getchar(); }
		while (c > '/' && c < ':') { o = o * 10 + c - '0'; c = getchar(); }
		return o * f;
	}
	inline char recd() {
		char o; while ((o = getchar()) != 'C' && o != 'D'); return o;
	}
}
using namespace IO;

const int SIZE = 1E3 + 7, Mod = 998244353;
int pre[SIZE], Arr[SIZE], Dp[SIZE][SIZE], w[SIZE][SIZE];

int main() {
	int N = read();
	for (int pos = 1; pos <= N; pos++)
		Arr[pos] = read(), w[pos][pos] = pos;
	for (int pos = 1; pos <= N; pos++)
		pre[pos] = pre[pos - 1] + Arr[pos];
		
	for (int Len = 2; Len <= N; Len++) {
		for (int L = 1, R = L + Len - 1; L <= N - Len + 1; L++, R = L + Len - 1) {
			Dp[L][R] = Inf;
			int Rm = L + Len - 1;
			for (int K = w[L][Rm - 1]; K <= w[L + 1][Rm]; K++)
				if (Dp[L][R] > Dp[L][K] + Dp[K + 1][R] + pre[R] - pre[L - 1])
					Dp[L][R] = Dp[L][K] + Dp[K + 1][R] + pre[R] - pre[L - 1], w[L][Rm] = K;
		}
	}
	printf("%d\n", Dp[1][N]);
}


 

0.0分

5 人评分

看不懂代码?想转换其他语言的代码? 或者想问其他问题? 试试问问AI编程助手,随时响应你的问题:

编程语言转换

万能编程问答  

代码解释器

代码纠错

SQL生成与解释

  评论区