답안 #131424

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
131424 2019-07-17T06:57:57 Z someone_aa 수열 (APIO14_sequence) C++17
39 / 100
115 ms 3832 KB
#include <bits/stdc++.h>
#define ll long long 
#define pb push_back
#define mp make_pair
#define x real()
#define y imag()
#define pll pair<ll, ll>
using namespace std;
typedef long long ftype;
typedef complex<ftype> point;
const int maxn = 1100;
ll arr[maxn], n, k;
ll prefix[maxn], suffix[maxn];

ll dot(point a, point b) {
	return (a*conj(b)).x;
}

ll fx(point a, ll d) {
	return dot(a, {d, 1});
}

ll dp[210][maxn];
ll dppntr[210][maxn];

class node {
public:
	point f;
	ll lb, rb;
	node *lchild, *rchild;
	int ind;

	node(ll _lb, ll _rb) {
		lb = _lb;
		rb = _rb;
		lchild = rchild = NULL;
		f = {0, INT_MIN};
		ind = 0;
	}
	void update(point nw, int _ind) {
		ll mid = (lb + rb) / 2;

		// SOMETHING NOT OKAY HERE
		bool lft = fx(nw, lb) > fx(f, lb);
		bool md = fx(nw, mid) > fx(f, mid);

		if(md) {
			swap(nw, f);
			swap(ind, _ind);
		}

		if(lb == rb) return;

		if(lft == md) {
			// they don't intersect in left, they might intersect in right part
			if(rchild == NULL) rchild = new node(mid+1, rb);
			rchild -> update(nw, _ind);
		}
		else {
			// they intersect in left part, continue searching in left
			if(lchild == NULL) lchild = new node(lb, mid);
			lchild -> update(nw, _ind);
		}
	}
	pll query(ll p) {
		ll mid = (lb + rb) / 2;

		if(lb == rb) return {fx(f, p), ind};
		else {
			if(p <= mid) {
				pll val = {INT_MIN, INT_MIN};
				if(lchild != NULL) val = lchild -> query(p);
				
				if(fx(f, p) > val.first) return {fx(f, p), ind};
				else return val;
			}
			else {
				pll val = {INT_MIN, INT_MIN};
				if(rchild != NULL) val = rchild -> query(p);
				
				if(fx(f, p) > val.first) return mp(fx(f, p), ind);
				else return val;
			}
		}
	}
};

int main() {
	cin>>n>>k;
	for(int i=1;i<=n;i++) {
		cin>>arr[i];
		prefix[i] = prefix[i-1] + arr[i];
	}

	for(int i=n;i>=1;i--) {
		suffix[i] = suffix[i+1] + arr[i];
	}

	for(int i=1;i<=n;i++) {
		dp[1][i] = prefix[i] * suffix[i+1];
	}

 	for(int p=2;p<=k;p++) {
 		/*node *root = new node(0, 1e9);
 		for(int i=1;i<=n;i++) {
 			root -> update({-prefix[i-1], dp[p-1][i-1]}, i-1);

 			pll qr = root -> query(suffix[i+1]);

 			dp[p][i] = qr.first + prefix[i] * suffix[i+1];
 			dppntr[p][i] = qr.second;
 		}*/

 		for(int i=1;i<=n;i++) {
 			for(int lst=i;lst>=1;lst--) {
 				if(dp[p-1][lst-1] + (prefix[i] - prefix[lst-1]) * suffix[i+1] > dp[p][i]) {
 					dp[p][i] = dp[p-1][lst-1] + (prefix[i] - prefix[lst-1]) * suffix[i+1];
 					dppntr[p][i] = lst-1;
 				}
 			}
 		}
 	}
 	
 	ll result = 0LL;
 	ll lst = 0;
 	for(int i=1;i<=n;i++) {
 		if(dp[k][i] > result) {
 			result = dp[k][i];
 			lst = i;
 		}
 	}

 	//lst++;
 	//cout<<lst<<"\n";

 	vector<int>v;
 	int p = k;
 	while(lst > 0) {
 		v.pb(lst);
 		lst = dppntr[p][lst];
 		p--;
 	}

 	reverse(v.begin(), v.end());

 	cout<<result<<"\n";
 	for(int i:v) {
 		cout<<i<<" ";
 	} cout<<"\n";
}
# 결과 실행 시간 메모리 Grader output
1 Correct 2 ms 376 KB contestant found the optimal answer: 108 == 108
2 Correct 2 ms 376 KB contestant found the optimal answer: 999 == 999
3 Incorrect 2 ms 376 KB Unexpected end of file - int32 expected
4 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Correct 2 ms 376 KB contestant found the optimal answer: 1093956 == 1093956
2 Correct 2 ms 376 KB contestant found the optimal answer: 302460000 == 302460000
3 Correct 2 ms 760 KB contestant found the optimal answer: 122453454361 == 122453454361
4 Correct 2 ms 376 KB contestant found the optimal answer: 93663683509 == 93663683509
5 Correct 2 ms 376 KB contestant found the optimal answer: 1005304678 == 1005304678
6 Correct 2 ms 376 KB contestant found the optimal answer: 933702 == 933702
7 Correct 2 ms 504 KB contestant found the optimal answer: 25082842857 == 25082842857
8 Correct 2 ms 376 KB contestant found the optimal answer: 687136 == 687136
9 Correct 2 ms 376 KB contestant found the optimal answer: 27295930079 == 27295930079
10 Correct 2 ms 376 KB contestant found the optimal answer: 29000419931 == 29000419931
# 결과 실행 시간 메모리 Grader output
1 Correct 2 ms 376 KB contestant found the optimal answer: 610590000 == 610590000
2 Correct 2 ms 376 KB contestant found the optimal answer: 311760000 == 311760000
3 Correct 9 ms 2552 KB contestant found the optimal answer: 1989216017013 == 1989216017013
4 Correct 2 ms 376 KB contestant found the optimal answer: 1499437552673 == 1499437552673
5 Correct 7 ms 1912 KB contestant found the optimal answer: 1019625819 == 1019625819
6 Correct 9 ms 2296 KB contestant found the optimal answer: 107630884 == 107630884
7 Correct 9 ms 2552 KB contestant found the optimal answer: 475357671774 == 475357671774
8 Correct 3 ms 760 KB contestant found the optimal answer: 193556962 == 193556962
9 Correct 3 ms 632 KB contestant found the optimal answer: 482389919803 == 482389919803
10 Correct 4 ms 888 KB contestant found the optimal answer: 490686959791 == 490686959791
# 결과 실행 시간 메모리 Grader output
1 Correct 4 ms 376 KB contestant found the optimal answer: 21503404 == 21503404
2 Correct 4 ms 376 KB contestant found the optimal answer: 140412195 == 140412195
3 Correct 109 ms 3732 KB contestant found the optimal answer: 49729674225461 == 49729674225461
4 Correct 4 ms 376 KB contestant found the optimal answer: 37485571387523 == 37485571387523
5 Correct 115 ms 3704 KB contestant found the optimal answer: 679388326 == 679388326
6 Correct 98 ms 3288 KB contestant found the optimal answer: 4699030287 == 4699030287
7 Correct 110 ms 3800 KB contestant found the optimal answer: 12418819758185 == 12418819758185
8 Correct 109 ms 3832 KB contestant found the optimal answer: 31093317350 == 31093317350
9 Correct 26 ms 972 KB contestant found the optimal answer: 12194625429236 == 12194625429236
10 Correct 48 ms 1912 KB contestant found the optimal answer: 12345131038664 == 12345131038664
# 결과 실행 시간 메모리 Grader output
1 Runtime error 3 ms 504 KB Execution killed with signal 11 (could be triggered by violating memory limits)
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Runtime error 3 ms 376 KB Execution killed with signal 11 (could be triggered by violating memory limits)
2 Halted 0 ms 0 KB -