QOJ.ac
QOJ
ID | Problem | Submitter | Result | Time | Memory | Language | File size | Submit time | Judge time |
---|---|---|---|---|---|---|---|---|---|
#658807 | #7624. Mystery of Prime | Yshanqian | WA | 4ms | 17204kb | C++20 | 3.3kb | 2024-10-19 17:39:34 | 2024-10-19 17:39:35 |
Judging History
answer
#include <bits/stdc++.h>
using namespace std;
#define xx first
#define yy second
#define endl "\n"
#define pb push_back
#define int long long
#define ll long long
#define lowbit(x) x & (-x)
typedef pair<int, int> pii;
#define LF(x) fixed << setprecision(x)
#define Yshanqian ios::sync_with_stdio(false), cin.tie(0), cout.tie(0);
const int N = 2e5 + 10, M = 1010, inf = 0x3f3f3f3f, mod = 1e9 + 7, P = 13331;
int n;
int a[N];
int dp[N][2][4];
bool st[N];
int cnt, p[N];
void init()
{
int n = 2e5;
for (int i = 2; i <= n; i++)
{
if (!st[i])
p[++cnt] = i;
for (int j = 1; p[j] <= n / i; j++)
{
st[i * p[j]] = 1;
if (i % p[j] == 0)
break;
}
}
}
void solve()
{
cin >> n;
for (int i = 1; i <= n; i++)
cin >> a[i];
memset(dp, inf, sizeof dp);
if (a[1] == 1)
{
dp[1][1][2] = inf, dp[1][0][2] = 0;
if (a[1] % 2)
dp[1][0][0] = inf, dp[1][1][0] = 1, dp[1][0][1] = 0;
else
dp[1][0][1] = inf, dp[1][1][1] = 1, dp[1][0][0] = 0;
}
else
{
dp[1][1][2] = 1, dp[1][0][2] = inf;
if (a[1] % 2)
dp[1][0][0] = inf, dp[1][1][0] = 1, dp[1][0][1] = 0;
else
dp[1][0][1] = inf, dp[1][1][1] = 1, dp[1][0][0] = 0;
}
for (int i = 2; i <= n; i++)
{
int x1 = a[i] % 2, x2 = a[i - 1] % 2;
if (!st[a[i] + a[i - 1]])
dp[i][0][x1] = min(dp[i][0][x1], dp[i][0][x2]);
if (a[i] == 1)
{
dp[i][0][2] = min(dp[i][0][2], dp[i - 1][0][2]);
dp[i][0][2] = min(dp[i][0][2], dp[i - 1][1][2]);
dp[i][0][2] = min(dp[i][0][2], dp[i - 1][0][0]);
dp[i][0][2] = min(dp[i][0][2], dp[i - 1][1][0]);
}
else
{
dp[i][1][2] = min(dp[i][1][2], dp[i - 1][0][2] + 1);
dp[i][1][2] = min(dp[i][1][2], dp[i - 1][1][2] + 1);
dp[i][1][2] = min(dp[i][1][2], dp[i - 1][0][0] + 1);
dp[i][1][2] = min(dp[i][1][2], dp[i - 1][1][0] + 1);
}
if (x1)
{
dp[i][0][1] = min(dp[i][0][1], dp[i - 1][1][0]);
dp[i][0][1] = min(dp[i][0][1], dp[i - 1][0][0]);
dp[i][1][0] = min(dp[i][1][0], dp[i - 1][0][1] + 1);
dp[i][1][0] = min(dp[i][1][0], dp[i - 1][1][1] + 1);
dp[i][1][1] = min(dp[i][1][1], dp[i - 1][0][0] + 1);
dp[i][1][1] = min(dp[i][1][1], dp[i - 1][1][0] + 1);
}
else
{
dp[i][0][0] = min(dp[i][0][0], dp[i - 1][1][1]);
dp[i][0][0] = min(dp[i][0][0], dp[i - 1][0][1]);
dp[i][1][0] = min(dp[i][1][0], dp[i - 1][0][1] + 1);
dp[i][1][0] = min(dp[i][1][0], dp[i - 1][1][1] + 1);
dp[i][1][1] = min(dp[i][1][1], dp[i - 1][0][0] + 1);
dp[i][1][1] = min(dp[i][1][1], dp[i - 1][1][0] + 1);
}
}
int ans = inf;
for (int i = 0; i <= 1; i++)
for (int j = 0; j <= 2; j++)
ans = min(ans, dp[n][i][j]);
cout << ans << endl;
}
signed main()
{
Yshanqian;
int T;
T = 1;
init();
// cin >> T;
for (int cases = 1; cases <= T; ++cases)
{
// cout<<"Case #"<<cases<<": ";
solve();
}
return 0;
}
Details
Tip: Click on the bar to expand more detailed information
Test #1:
score: 100
Accepted
time: 4ms
memory: 16460kb
input:
6 1 5 1 4 4 1
output:
2
result:
ok 1 number(s): "2"
Test #2:
score: 0
Accepted
time: 0ms
memory: 17204kb
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: 4ms
memory: 17120kb
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:
759
result:
wrong answer 1st numbers differ - expected: '733', found: '759'