Submission #343987

#TimeUsernameProblemLanguageResultExecution timeMemory
343987IZhO_2021_I_want_SilverBigger segments (IZhO19_segments)C++14
27 / 100
1593 ms13676 KiB
#pragma GCC optimize("Ofast")
#pragma GCC target("sse,sse2,sse3,sse3,sse4,popcnt,abm,mmx")

#include <iostream>
#include <algorithm>
#include <vector>
#include <cmath>
#include <set>
#include <map>
#include <iomanip>
#include <cassert>
#include <stack>
#include <queue>
#include <deque>
//#include <ext/pb_ds/assoc_container.hpp>
//#include <ext/pb_ds/tree_policy.hpp>-

using namespace std;
//using namespace __gnu_pbds;

typedef long long ll;
typedef pair <int, int> pii;
typedef pair <ll, ll> pll;

// template<typename T> using ordered_set = tree<T, null_type, less<T>, rb_tree_tag, tree_order_statistics_node_update>;
//  order_of_key (k) : Number of items strictly smaller than k .
//  find_by_order(k) : K-th element in a set (counting from zero).
#define sz(a) (int)a.size()
#define all(a) a.begin(), a.end()
#define pb push_back
#define ppb pop_back
#define mkp make_pair
#define F first
#define S second
#define lb lower_bound
#define ub upper_bound
#define show(a) cerr << #a <<" -> "<< a <<" "
#define nl cerr <<"\n"
#define int ll

const int N = 5005;
const int oo = 1e15 + 5;

int n, a[N], sum[N], dp[N][N], ans;

void solve() {
    cin >> n;
    for (int i = 1; i <= n; ++i) {
        cin >> a[i];
        sum[i] = sum[i-1] + a[i];
    }
    for (int i = 1; i <= n; ++i) {
        dp[i][1] = sum[i];
    }
    for (int k = 2; k <= n; ++k) {
        for (int i = 1; i <= n; ++i) {
            dp[i][k] = oo;
            for (int j = i-1; j >= 1; --j) {
                //show(j); show(k-1); show(i); show(dp[j][k-1]); show(sum[i] - sum[j]); nl;
                if (dp[j][k-1] <= sum[i] - sum[j]) {
                    dp[i][k] = min(dp[i][k], sum[i] - sum[j]);
                    break;
                }
            }
        }
    }
    int ans = 0;
    for (int k = 1; k <= n; ++k) {
        if (dp[n][k] != oo) { ans = k; }
    }
    cout << ans;
}

 main () {
	ios_base::sync_with_stdio(false);
	cin.tie(NULL);
	int tests = 1;
	//cin >> tests;
	while (tests --) {
		solve();
	}
	return 0;
}
/*
    Just Chalish!
*/

Compilation message (stderr)

segments.cpp:74:8: warning: ISO C++ forbids declaration of 'main' with no type [-Wreturn-type]
   74 |  main () {
      |        ^
#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...