QOJ.ac
QOJ
ID | 题目 | 提交者 | 结果 | 用时 | 内存 | 语言 | 文件大小 | 提交时间 | 测评时间 |
---|---|---|---|---|---|---|---|---|---|
#371738 | #244. Turn Off The Light | EnofTaiPeople | 100 ✓ | 259ms | 30188kb | C++14 | 1.7kb | 2024-03-30 15:20:43 | 2024-03-30 15:20:44 |
Judging History
answer
#include<bits/stdc++.h>
using namespace std;
const int N=(1<<20)+100,M=1e9+7;
using ll=long long;
using ul=unsigned long long;
using vt=vector<int>;
int T,n,m,L,R,d[N],g[N][2],c[N],ans;
struct dat{int v,k;}f[N];
string s;
int main(){
ios::sync_with_stdio(false),cin.tie(0);
int i,j,k,l,r,x,y,z,v;
for(cin>>T;T--;){
cin>>n>>s,s='b'+s,ans=0;
for(i=1,L=0;i<=n;++i)if(s[i]=='1'){L=i;break;}
if(!L){puts("0");continue;}
for(R=n;s[R]=='0';--R);
for(x=1;x<=n;++x)d[x]=M,c[x]=s[x]&1;
f[L]={0,0};
for(x=L+1;x<R;++x){
f[x].v=f[x-1].v+2;
if(c[x]^f[x-1].k)
f[x].k=1,f[x].v+=2;
else f[x].k=0;
}
g[R][0]=3,g[R-1][c[R-1]]=1,g[R-1][!c[R-1]]=2;
for(x=R-2;x>0;--x)
for(k=0;k<2;++k)
if(c[x]==k)g[x][k]=g[x+1][1]+1;
else g[x][k]=g[x+1][0]+3;
for(x=1;x<=L;++x)d[x]=min(d[x],g[x][0]);
for(x=L+1;x<R;++x)
d[x]=min(d[x],f[x-1].v+g[x][!f[x-1].k]+2);
f[R]={0,0};
for(x=R-1;x>L;--x){
f[x].v=f[x+1].v+2;
if(c[x]^f[x+1].k)
f[x].k=1,f[x].v+=2;
else f[x].k=0;
}
g[L][0]=3,g[L+1][c[L+1]]=1,g[L+1][!c[L+1]]=2;
for(x=L+2;x<=n;++x)
for(k=0;k<2;++k)
if(c[x]==k)g[x][k]=g[x-1][1]+1;
else g[x][k]=g[x-1][0]+3;
for(x=R;x<=n;++x)d[x]=min(d[x],g[x][0]);
for(x=L+1;x<R;++x)
d[x]=min(d[x],f[x+1].v+g[x][!f[x+1].k]+2);
for(x=1;x<=n;++x)ans=(1ll*x*d[x]+ans)%M;
printf("%d\n",ans);
}
return 0;
}
詳細信息
Test #1:
score: 100
Accepted
time: 259ms
memory: 30188kb
input:
146645 2 00 2 10 2 01 2 11 3 000 3 100 3 010 3 110 3 001 3 101 3 011 3 111 4 0000 4 1000 4 0100 4 1100 4 0010 4 1010 4 0110 4 1110 4 0001 4 1001 4 0101 4 1101 4 0011 4 1011 4 0111 4 1111 5 00000 5 10000 5 01000 5 11000 5 00100 5 10100 5 01100 5 11100 5 00010 5 10010 5 01010 5 11010 5 00110 5 10110 5...
output:
0 5 7 6 0 14 10 12 14 24 12 26 0 34 22 36 18 40 20 38 26 60 40 58 24 62 42 60 0 69 47 66 33 80 50 83 31 90 60 93 34 87 57 80 45 120 90 123 64 117 87 110 42 123 93 120 67 118 88 129 0 123 89 126 63 128 86 125 49 150 108 147 70 153 111 152 51 168 126 165 88 171 129 170 54 165 123 168 85 154 112 159 73...
result:
ok 146645 lines