QOJ.ac

QOJ

IDProblemSubmitterResultTimeMemoryLanguageFile sizeSubmit timeJudge time
#659173#7624. Mystery of PrimeYshanqianWA 4ms11208kbC++202.7kb2024-10-19 19:02:232024-10-19 19:02:34

Judging History

你现在查看的是最新测评结果

  • [2024-10-19 19:02:34]
  • 评测
  • 测评结果:WA
  • 用时:4ms
  • 内存:11208kb
  • [2024-10-19 19:02:23]
  • 提交

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][4];
bool st[N];
int cnt, p[N];
void init()
{
    int n = 2e5;
    st[1] = 1;
    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);
    dp[1][0] = 0; // 不变

    dp[1][1] = dp[1][2] = 1; // 变奇数

    if (a[1] == 1)
        dp[1][3] = 0; // 变1
    else
        dp[1][3] = 1;

    for (int i = 2; i <= n; i++)
    {
        if (!st[a[i] + a[i - 1]])
            dp[i][0] = min(dp[i][0], dp[i - 1][0]);

        if (!st[a[i] + 1])
            dp[i][0] = min(dp[i][0], dp[i - 1][3]);

        int x = a[i] % 2;
        if (x)
            dp[i][0] = min(dp[i][0], dp[i - 1][1]);
        else
            dp[i][0] = min(dp[i][0], dp[i - 1][2]);

        dp[i][1] = min(dp[i][1], dp[i - 1][3] + 1);
        dp[i][1] = min(dp[i][1], dp[i - 1][2] + 1);
        if (a[i - 1] % 2 == 1)
            dp[i][1] = min(dp[i][1], dp[i - 1][0] + 1);

        dp[i][2] = min(dp[i][2], dp[i - 1][1] + 1);

        if (a[i - 1] % 2 == 0)
            dp[i][2] = min(dp[i][2], dp[i - 1][0] + 1);

        int add = 1;
        if (a[i] == 1)
            add = 0;

        if (!st[a[i - 1] + 1])
            dp[i][3] = min(dp[i][3], dp[i - 1][0] + add);

        dp[i][3] = min(dp[i][3], dp[i - 1][3] + add);

        dp[i][3] = min(dp[i][3], dp[i - 1][1] + add);

        if (a[i] == 1)
            dp[i][3] = min(dp[i][3], dp[i][0]);
        else
            dp[i][3] = min(dp[i][3], dp[i][0] + 1);
    }
    // for (int i = 1; i <= n; i++)
    // {
    //     cout << i << " ";
    //     for (int j = 0; j <= 3; j++)
    //         cout << dp[i][j] << " ";
    //     cout << endl;
    // }
    int ans = inf;
    for (int i = 0; i <= 3; i++)
        ans = min(ans, dp[n][i]);
    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: 10148kb

input:

6
1 5 1 4 4 1

output:

2

result:

ok 1 number(s): "2"

Test #2:

score: 0
Accepted
time: 3ms
memory: 10880kb

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: 3ms
memory: 11208kb

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:

715

result:

wrong answer 1st numbers differ - expected: '733', found: '715'