QOJ.ac
QOJ
ID | 题目 | 提交者 | 结果 | 用时 | 内存 | 语言 | 文件大小 | 提交时间 | 测评时间 |
---|---|---|---|---|---|---|---|---|---|
#497859 | #8712. Flooding Wall | SirPh# | 12 | 124ms | 34508kb | C++20 | 2.4kb | 2024-07-29 19:35:42 | 2024-07-29 19:35:44 |
Judging History
answer
#include<bits/stdc++.h>
#define int long long
using namespace std;
const int mod=(int)1e9+7;
int dpl[500003][3];
int dpr[500003][3];
signed main()
{
int n;
cin>>n;
vector<int>arr(n+1);
vector<int>brr(n+1);
for(int i=1;i<=n;i++)cin>>arr[i];
for(int i=1;i<=n;i++)cin>>brr[i];
int ans=0;
for(int i=1;i<=n;i++)
{
// ans=ans-(((arr[i]*((1ll<<(n-1))%mod))%mod)+mod)%mod;
// ans=ans-(((brr[i]*((1ll<<(n-1))%mod))%mod)+mod)%mod;
}
dpl[0][0]=1;
for(int i=1;i<=n;i++)
{
for(int j=arr[i];j>=0;j--)
{
dpl[i][arr[i]]+=dpl[i-1][j];
dpl[i][arr[i]]%=mod;
}
for(int j=arr[i]+1;j<=2;j++)
{
dpl[i][j]+=dpl[i-1][j];
dpl[i][j]%=mod;
}
for(int j=brr[i];j>=0;j--)
{
dpl[i][brr[i]]+=dpl[i-1][j];
dpl[i][brr[i]]%=mod;
}
for(int j=brr[i]+1;j<=2;j++)
{
dpl[i][j]+=dpl[i-1][j];
dpl[i][j]%=mod;
}
}
dpr[n+1][0]=1;
for(int i=n;i>=1;i--)
{
for(int j=arr[i];j>=0;j--)
{
dpr[i][arr[i]]+=dpr[i+1][j];
dpr[i][arr[i]]%=mod;
}
for(int j=arr[i]+1;j<=2;j++)
{
dpr[i][j]+=dpr[i+1][j];
dpr[i][j]%=mod;
}
for(int j=brr[i];j>=0;j--)
{
dpr[i][brr[i]]+=dpr[i+1][j];
dpr[i][brr[i]]%=mod;
}
for(int j=brr[i]+1;j<=2;j++)
{
dpr[i][j]+=dpr[i+1][j];
dpr[i][j]%=mod;
}
}
// cout<<ans<<endl;
for(int i=1;i<=n;i++)
{
for(int j=arr[i];j<=2;j++)
{
for(int k=arr[i];k<=2;k++)
{
int x=dpl[i-1][j]*dpr[i+1][k];
// cout<<i<<" "<<j<<" "<<k<<" "<<dpl[i-1][j]<<" "<<dpr[i+1][j]<<endl;
x%=mod;
ans+=((min(j,k)-arr[i])*x)%mod;
ans%=mod;
}
}
for(int j=brr[i];j<=2;j++)
{
for(int k=brr[i];k<=2;k++)
{
int x=dpl[i-1][j]*dpr[i+1][k];
// cout<<i<<" "<<j<<" "<<k<<" "<<dpl[i-1][j]<<" "<<dpr[i+1][j]<<endl;
x%=mod;
ans+=((min(j,k)-brr[i])*x)%mod;
ans%=mod;
}
}
}
cout<<ans<<endl;
}
详细
Subtask #1:
score: 0
Wrong Answer
Test #1:
score: 8
Accepted
time: 1ms
memory: 5508kb
input:
4 1 1 1 1 2 2 2 2
output:
6
result:
ok single line: '6'
Test #2:
score: 0
Wrong Answer
time: 1ms
memory: 5556kb
input:
10 1 2 3 4 5 6 7 8 9 10 10 9 8 7 6 5 4 3 2 1
output:
0
result:
wrong answer 1st lines differ - expected: '21116', found: '0'
Subtask #2:
score: 0
Wrong Answer
Test #23:
score: 0
Wrong Answer
time: 2ms
memory: 5632kb
input:
100 948 425 211 688 416 81 356 602 712 954 117 522 797 75 281 491 662 669 78 156 939 526 929 937 916 619 166 777 48 898 449 278 298 714 668 755 679 38 389 602 195 135 672 833 655 541 473 27 596 274 351 353 598 993 837 246 950 99 179 751 481 843 550 195 964 279 806 82 330 599 124 756 649 838 513 625 ...
output:
0
result:
wrong answer 1st lines differ - expected: '164439470', found: '0'
Subtask #3:
score: 0
Skipped
Dependency #2:
0%
Subtask #4:
score: 0
Skipped
Dependency #1:
0%
Subtask #5:
score: 12
Accepted
Test #57:
score: 12
Accepted
time: 123ms
memory: 34292kb
input:
500000 1 1 1 1 2 2 2 1 1 1 1 1 2 2 1 1 2 2 2 2 1 2 1 1 2 1 1 1 1 2 1 2 2 1 1 2 2 2 1 1 2 2 2 2 1 2 2 2 2 1 2 2 2 1 2 2 2 1 2 2 2 2 2 2 2 2 1 1 2 1 2 1 2 2 1 2 2 2 2 2 2 2 1 1 1 2 2 2 1 1 2 1 2 2 1 2 2 1 2 2 2 1 2 2 2 2 2 2 2 2 1 1 1 2 1 2 1 1 2 1 2 1 2 2 1 1 2 1 1 1 1 1 2 2 2 2 2 2 1 2 2 1 1 2 1 2 1...
output:
869044223
result:
ok single line: '869044223'
Test #58:
score: 12
Accepted
time: 111ms
memory: 34428kb
input:
499993 1 1 2 1 1 2 1 1 2 1 1 1 2 2 2 2 1 1 1 2 1 1 1 2 2 2 1 1 2 2 1 2 1 2 1 2 1 2 2 2 2 1 1 2 1 2 1 2 2 1 1 2 2 2 2 2 1 1 2 1 1 2 1 1 2 2 2 1 2 2 1 2 1 1 2 1 1 2 1 1 1 1 2 1 1 1 2 2 1 1 2 1 1 1 2 2 2 2 1 1 2 1 2 1 2 2 1 2 1 1 1 1 2 1 1 2 1 2 2 1 2 2 2 2 2 1 2 2 1 1 1 2 1 1 1 1 2 1 1 1 2 1 1 2 1 1 1...
output:
480826834
result:
ok single line: '480826834'
Test #59:
score: 12
Accepted
time: 124ms
memory: 34304kb
input:
500000 2 2 1 1 2 2 2 1 1 2 2 2 2 2 1 1 1 1 1 2 1 2 1 2 1 2 2 1 1 1 2 1 1 1 1 1 1 2 2 2 2 2 2 2 2 1 2 1 2 1 2 1 1 2 1 1 2 2 2 1 2 2 1 2 2 1 2 2 1 1 1 2 1 1 1 2 2 2 1 1 1 1 1 1 1 2 1 1 1 1 1 2 2 1 2 1 2 2 2 1 2 1 1 2 1 2 1 1 2 2 2 1 2 1 2 2 2 2 2 2 1 1 2 2 2 2 1 1 1 1 1 1 2 2 1 1 1 2 1 2 2 2 1 1 1 2 2...
output:
869044223
result:
ok single line: '869044223'
Test #60:
score: 12
Accepted
time: 122ms
memory: 34508kb
input:
499999 2 1 2 2 1 2 1 1 2 1 1 1 2 2 2 1 1 2 2 2 1 1 1 2 2 2 2 2 1 2 2 1 1 2 2 2 2 1 1 2 1 2 2 1 2 2 2 2 2 2 1 2 2 2 2 2 2 1 2 2 2 2 2 1 2 1 2 1 2 1 2 1 1 1 1 1 1 2 1 1 1 1 2 1 2 2 1 1 2 2 1 2 1 1 2 1 2 1 1 2 1 1 1 2 2 1 1 2 2 2 2 2 1 2 1 2 2 1 1 1 2 2 1 1 2 1 1 2 1 1 1 2 1 2 1 1 2 1 2 1 2 1 2 2 2 1 1...
output:
192864306
result:
ok single line: '192864306'
Subtask #6:
score: 0
Skipped
Dependency #1:
0%