#include using namespace std; using Int = long long; const char newl = '\n'; template inline void chmin(T1 &a,T2 b){if(a>b) a=b;} template inline void chmax(T1 &a,T2 b){if(a void drop(const T &x){cout< vector read(size_t n){ vector ts(n); for(size_t i=0;i>ts[i]; return ts; } template vector sorted(vector vs){ sort(vs.begin(),vs.end()); return vs; } //INSERT ABOVE HERE const Int MAX = 2020; const Int INF = 1e18; Int dp[MAX]; signed main(){ cin.tie(0); ios::sync_with_stdio(0); Int m,n; cin>>m>>n; auto as=sorted(read(m)); auto bs=sorted(read(n)); auto solve=[&](Int k)->Int{ fill(dp,dp+MAX,INF); dp[0]=0; for(Int j=0;j=0;i--){ if(dp[i]>=INF) continue; Int res=0; for(Int t=1;t<=k and i+t<=m;t++){ res+=abs(as[i+t-1]-bs[j]); // chmin(dp[i+t],dp[i]+res); if(dp[i+t]<=dp[i]+res) break; dp[i+t]=dp[i]+res; } } } return dp[m]; }; for(Int k=1;k<=m;k++) cout<