#include<iostream>
#include<algorithm>
#include<vector>
#include<queue>
using namespace std;
using lint = long long;
using intp = pair<int,int>;
using vint = vector<int>;
const int MAX_N=510;
int n,m;
int arr[MAX_N],sarr[MAX_N],sum[MAX_N];
int box[MAX_N];
int dt[MAX_N][MAX_N][MAX_N];
priority_queue<intp> pq;
int main()
{
ios::sync_with_stdio(0),cin.tie(0),cout.tie(0);
cin >> n;
for(int i=0;i<n;i++)
{
cin >> arr[i];
sarr[i]=arr[i];
}
sort(sarr,sarr+n,greater<int>());
for(int i=0;i<n;i++)
sum[i]=sarr[i]+((i) ? sum[i-1] : 0);
cin >> m;
for(int i=1;i<=m;i++)
cin >> box[i];
/*fill(dt[0][0],dt[0][0]+MAX_N*MAX_N*MAX_N,MAX_N);
for(int i=sarr[0];i<=sum[n-1];i++)dt[0][i][0]=i;
for(int b=1;b<=m;b++)
for(int h=sum[n-1];h>=0;h--)
for(int s=0;s<=sum[n-1];s++)
{
dt[b][h][s]=dt[b][h+1][s];
int flag=1;
for(int v=box[b-1]+1;v<=box[b];v++)
if(s-h*(box[b]-v)<sum[v-1])flag=0;
if(flag && s-h*(box[b]-box[b-1])>=0)
dt[b][h][s]=min(dt[b][h][s],dt[b-1][h][s-h*(box[b]-box[b-1])]);
}
if(dt[m][0][sum[n-1]]==MAX_N)
{
cout << -1;
return 0;
}
cout << dt[m][0][sum[n-1]] << '\n';*/
if(sum[n-1]%box[1]!=0 || sum[n-1]/box[1]<sarr[0])
{
cout << -1;
return 0;
}
vint boxs;
for(int i=0;i<sum[n-1];i+=box[1])boxs.push_back(box[1]);
/*for(int b=m,h=0,s=sum[n-1];b+s>0;)
{
if(dt[b][h][s]==dt[b][h+1][s])
{
boxs.push_back(box[b]);
h++;
}
else
{
s-=h*(box[b]-box[b-1]);
b--;
}
}*/
for(int i=0;i<n;i++)
pq.push({arr[i],i+1});
vector<intp> st;
for(auto c : boxs)
{
cout << c << ' ';
for(int i=0;i<c;i++)
{
intp p=pq.top();pq.pop();
cout << p.second << ' ';
st.push_back({p.first-1,p.second});
}
while(!st.empty())
{
pq.push(st.back());
st.pop_back();
}
cout << '\n';
}
return 0;
}
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
1 ms |
344 KB |
the types of the cookies in it should be different |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
0 ms |
348 KB |
Output is correct |
2 |
Incorrect |
0 ms |
348 KB |
Unexpected end of file - int32 expected |
3 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
0 ms |
596 KB |
the types of the cookies in it should be different |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
1 ms |
344 KB |
the types of the cookies in it should be different |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
1 ms |
344 KB |
the types of the cookies in it should be different |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
1 ms |
344 KB |
the types of the cookies in it should be different |
2 |
Halted |
0 ms |
0 KB |
- |