이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
int main(){
ios_base::sync_with_stdio(0); cin.tie(0);
int n; cin >> n; pair<int, int> A[n + 1];
for (int i = 1; i <= n; i++) cin >> A[i].first, A[i].second = i;
sort(A + 1, A + n + 1);
auto maxTeams = [&](int mxsz, bool get){
int dp[n + 1], sz[n + 1];
memset(dp, -0x3f, sizeof(dp)); dp[0] = 0;
for (int i = 1; i <= n; i++){
int l = max(i - mxsz, 0), r = i - A[i].first;
if (l <= r) dp[i] = dp[r] + 1, sz[i] = i - r;
}
if (get){
cout<<dp[n]<<"\n";
for (int pos = n; pos; pos -= sz[pos]){
cout<<sz[pos]<<" ";
for (int i = pos; i > pos - sz[pos]; i--) cout<<A[i].second<<" ";
cout<<"\n";
}
}
return dp[n];
};
int L = 1, H = n, mx = maxTeams(1e9, 0);
while (L < H){
int M = (L + H) / 2;
(maxTeams(M, 0) == mx) ? H = M : L = M + 1;
}
maxTeams(H, 1);
}
# | 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... |