QOJ.ac
QOJ
ID | 题目 | 提交者 | 结果 | 用时 | 内存 | 语言 | 文件大小 | 提交时间 | 测评时间 |
---|---|---|---|---|---|---|---|---|---|
#389547 | #7624. Mystery of Prime | luqyou | WA | 0ms | 9908kb | C++17 | 1.2kb | 2024-04-14 15:16:35 | 2024-04-14 15:16:35 |
Judging History
answer
#include<bits/stdc++.h>
#define int long long
using namespace std;
const int maxn=2e5+10;
const int inf=1e9+10;
int n,a[maxn],fl[maxn],dp[maxn][4];
bool f(int x){
for(int i=2;i*i<=x;i++) if(x%i==0) return 0;
return 1;
}
void solve(){
memset(dp,0x3f,sizeof dp);
cin>>n,dp[1][0]=0,dp[1][1]=dp[1][2]=dp[1][3]=1;
for(int i=1;i<=n;i++) cin>>a[i];
for(int i=2;i<=n;i++){
bool fl=f(a[i]+a[i-1]),fl1=f(a[i]+1),fl2=f(a[i-1]+1);
if(fl) dp[i][0]=min(dp[i][0],dp[i-1][0]);
if(fl1) dp[i][0]=min(dp[i][0],dp[i-1][1]);
if(a[i]&1) dp[i][0]=min(dp[i][0],dp[i-1][2]);
else dp[i][0]=min(dp[i][0],dp[i-1][3]);
dp[i][1]=min({dp[i-1][1],dp[i-1][2],dp[i-1][3]})+1;
if(fl2) dp[i][1]=min(dp[i][1],dp[i-1][0]+1);
dp[i][2]=min({dp[i-1][1],dp[i-1][3]})+1;
if(a[i-1]&1) dp[i][2]=min(dp[i][2],dp[i-1][0]+1);
dp[i][3]=dp[i-1][2]+1;
if(!(a[i-1]&1)) dp[i][3]=min(dp[i][3],dp[i-1][0]+1);
// cout<<dp[i][0]<<" "<<dp[i][1]<<' '<<dp[i][2]<<' '<<dp[i][3]<<endl;
}
cout<<min({dp[n][0],dp[n][1],dp[n][2],dp[n][3]})<<endl;
}
signed main(){
ios::sync_with_stdio(false);
cin.tie(0),cout.tie(0);
int t=1;
// cin>>t;
while(t--) solve();
return 0;
}
詳細信息
Test #1:
score: 100
Accepted
time: 0ms
memory: 9844kb
input:
6 1 5 1 4 4 1
output:
2
result:
ok 1 number(s): "2"
Test #2:
score: 0
Accepted
time: 0ms
memory: 9908kb
input:
9 30 6 7 12 15 8 20 17 14
output:
4
result:
ok 1 number(s): "4"
Test #3:
score: -100
Wrong Answer
time: 0ms
memory: 9908kb
input:
1568 119 519 706 1003 1317 322 25 1466 816 525 1 1122 38 1511 774 515 274 780 647 230 1602 1051 810 1 1 1232 1 1202 1583 412 1111 168 309 1181 184 1260 491 764 809 1213 804 1470 1 1087 1235 1004 673 1338 1333 1392 1036 1539 268 1 712 727 297 404 1317 36 463 1067 1133 693 931 46 1 100 1608 965 1 1406...
output:
725
result:
wrong answer 1st numbers differ - expected: '733', found: '725'