This submission is migrated from previous version of oj.uz, which used different machine for grading. This submission may have different result if resubmitted.
///
#include<bits/stdc++.h>
#define task "C"
#define ll long long
#define ld long double
#define fi first
#define se second
#define pb push_back
using namespace std;
const int MAXN = 1e6 + 5;
const ll INF = 1e9 + 5;
int n, a[MAXN];
void Input()
{
cin >> n;
for (int i = 1; i <= n; i++)
cin >> a[i];
}
pair<int, int> dp[MAXN];
int cs[MAXN], trace[MAXN];
bool upd(pair<int, int>& a, const pair<int, int>& b)
{
if (a.fi < b.fi || (a.fi == b.fi && a.se > b.se))
{
a = b;
return 1;
}
return 0;
}
void Solve()
{
iota(cs + 1, cs + n + 1, 1);
sort(cs + 1, cs + n + 1, [](int i, int j)
{
return a[i] < a[j];
});
for (int i = 1; i <= n; i++)
{
dp[i] = {0, INF};
for (int j = i - a[cs[i]] + 1; j >= 1; j--)
{
if (upd(dp[i], {dp[j - 1].fi + 1, max(dp[j - 1].se, i - j + 1)}))
{
trace[i] = j;
}
}
}
cout << dp[n].fi << '\n';
int i = n;
while (i > 0)
{
int j = trace[i];
cout << i - j + 1 << ' ';
for (; i >= j; i--)
cout << cs[i] << ' ';
cout << '\n';
}
}
int main()
{
ios_base::sync_with_stdio(false);
cin.tie(nullptr);
if (fopen(task".INP","r"))
{
freopen(task".INP","r",stdin);
//freopen(task".OUT","w",stdout);
}
Input();
Solve();
}
Compilation message (stderr)
tea.cpp: In function 'int main()':
tea.cpp:71:16: warning: ignoring return value of 'FILE* freopen(const char*, const char*, FILE*)' declared with attribute 'warn_unused_result' [-Wunused-result]
71 | freopen(task".INP","r",stdin);
| ~~~~~~~^~~~~~~~~~~~~~~~~~~~~~
# | 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... |
# | 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... |