# | TimeUTC-0 | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
1172037 | AtabayRajabli | Bigger segments (IZhO19_segments) | C++20 | 1597 ms | 70728 KiB |
#include <bits/stdc++.h>
#define int long long
#define all(v) v.begin(), v.end()
using namespace std;
const int sz = 3e3 + 1, inf = 1e18;
int n, a[sz], dp[sz][sz];
signed main()
{
ios_base::sync_with_stdio(0);
cin.tie(0);
cout.tie(0);
cin >> n;
for(int i = 1; i <= n; i++)
{
cin >> a[i];
a[i] += a[i - 1];
}
// i1, i2, i3, i4, i5
// a[i5] - a[i4] >= a[i4] - a[i3] >= a[i3] - a[i2] >= a[i2] - a[i1] >= a[i1]
for(int i = 0; i <= n; i++) fill(dp[i], dp[i] + 1 + n, inf);
dp[0][0] = 0;
for(int i = 1; i <= n; i++)
{
for(int j = i; j <= n; j++)
{
for(int l = i - 1; l < j; l++)
{
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |