QOJ.ac
QOJ
ID | Problem | Submitter | Result | Time | Memory | Language | File size | Submit time | Judge time |
---|---|---|---|---|---|---|---|---|---|
#337008 | #8285. Shell Sort | ucup-team197# | RE | 9ms | 7892kb | C++14 | 1.8kb | 2024-02-25 01:05:56 | 2024-02-25 01:05:56 |
Judging History
answer
#include<bits/stdc++.h>
using namespace std;
typedef long long ll;
const ll mod=1e9+7;
int n,m,z;
int d[11],p[35];
int dp[1048576];
int val[1048576];
ll ways[1048576];
int bx[31],pf[31];
int track[11];
int pos[11];
int pen[31],out[31];
int main(){
ios::sync_with_stdio(false);cin.tie(0);
cin >> n >> m;
for(int i=1; i<=m ;i++){
cin >> d[i];
}
z=d[1];z=min(z,n);
pf[0]=1;
int ext=0;
for(int i=0; i<z ;i++){
bx[i]=(n-i+z-1)/z;
pf[i+1]=pf[i]*(bx[i]+1);
ext+=(bx[i])*(bx[i]-1)/2;
}
ways[0]=1;
int ans;
ll wans;
for(int i=1; i<pf[z] ;i++){
ll mul=0;
//cout << "Doing " << i << endl;
for(int j=0; j<z ;j++){
int cur=i%pf[j+1]/pf[j];
pos[j]=j+(cur-1)*z;
track[j]=0;
for(int k=j; k<n ;k+=z){
if(k<j+cur*z) p[k]=0;
else p[k]=1;
}
}
/*for(int j=0; j<n ;j++) cout << p[j];
cout << endl;*/
for(int j=0; j<n ;j++) track[j]=0;
for(int r=2; r<=m ;r++){
for(int j=0; j<n ;j++) pen[j]=0;
for(int j=0; j<d[r] ;j++){
int cnt=0,c0=0;
for(int k=j; k<n ;k+=d[r]){
if(p[k]==0) c0++,pen[k]=cnt;
else cnt++;
}
for(int k=j; k<n ;k+=d[r]){
out[k]=j+(c0-1)*d[r];
}
for(int k=j; k<n ;k+=d[r]){
if(c0-->0) p[k]=0;
else p[k]=1;
}
}
for(int j=0; j<z ;j++){
if(pos[j]<0) continue;
track[j]+=pen[pos[j]];
pos[j]=out[pos[j]];
}
}
dp[i]=-1e9;
for(int j=0; j<z ;j++){
int cur=i%pf[j+1]/pf[j];
if(cur==0) continue;
if(dp[i]<dp[i-pf[j]]+track[j]){
dp[i]=dp[i-pf[j]]+track[j];
ways[i]=ways[i-pf[j]];
}
else if(dp[i]==dp[i-pf[j]]+track[j]){
ways[i]=(ways[i]+ways[i-pf[j]])%mod;
}
}
ans=dp[i];
wans=ways[i];
//cout << dp[i] << ' ' << ways[i] << endl;
}
cout << ans+ext << ' ' << wans << endl;
}
Details
Tip: Click on the bar to expand more detailed information
Test #1:
score: 100
Accepted
time: 1ms
memory: 5788kb
input:
2 2 2 1
output:
1 1
result:
ok 2 number(s): "1 1"
Test #2:
score: 0
Accepted
time: 1ms
memory: 5736kb
input:
5 4 5 4 2 1
output:
6 4
result:
ok 2 number(s): "6 4"
Test #3:
score: 0
Accepted
time: 0ms
memory: 5668kb
input:
8 4 6 3 2 1
output:
15 4
result:
ok 2 number(s): "15 4"
Test #4:
score: 0
Accepted
time: 0ms
memory: 5736kb
input:
8 6 8 7 5 4 2 1
output:
14 2
result:
ok 2 number(s): "14 2"
Test #5:
score: 0
Accepted
time: 1ms
memory: 5732kb
input:
8 3 8 7 1
output:
22 7
result:
ok 2 number(s): "22 7"
Test #6:
score: 0
Accepted
time: 1ms
memory: 5676kb
input:
8 1 1
output:
28 1
result:
ok 2 number(s): "28 1"
Test #7:
score: 0
Accepted
time: 1ms
memory: 5804kb
input:
16 2 6 1
output:
77 15
result:
ok 2 number(s): "77 15"
Test #8:
score: 0
Accepted
time: 7ms
memory: 5760kb
input:
16 8 10 9 8 7 6 5 4 1
output:
57 5
result:
ok 2 number(s): "57 5"
Test #9:
score: 0
Accepted
time: 9ms
memory: 7892kb
input:
16 10 10 9 8 7 6 5 4 3 2 1
output:
57 3
result:
ok 2 number(s): "57 3"
Test #10:
score: 0
Accepted
time: 7ms
memory: 5764kb
input:
16 7 10 9 8 6 5 4 1
output:
49 1
result:
ok 2 number(s): "49 1"
Test #11:
score: 0
Accepted
time: 2ms
memory: 5696kb
input:
16 4 7 6 2 1
output:
52 9
result:
ok 2 number(s): "52 9"
Test #12:
score: -100
Runtime Error
input:
22 3 5 3 1