Submission #1078443

# Submission time Handle Problem Language Result Execution time Memory
1078443 2024-08-27T17:28:14 Z raphaelp Broken Device (JOI17_broken_device) C++14
0 / 100
64 ms 3188 KB
#include "Annalib.h"
#include <bits/stdc++.h>
using namespace std;

void Anna(int N, long long X, int K, int P[])
{
    vector<int> P2(N);
    for (int i = 0; i < K; i++)
        P2[P[i]] = 1;
    vector<int> bits;
    while (X)
    {
        bits.push_back(X % 2);
        X /= 2;
    }
    int M = bits.size();
    reverse(bits.begin(), bits.end());
    vector<vector<pair<int, int>>> dp(N + 5, vector<pair<int, int>>(M + 1));
    vector<int> ans(N);
    dp[0][0].first = 1;
    for (int i = 0; i < N; i++)
    {
        for (int j = 0; j < M; j++)
        {
            if (dp[i][j].first)
            {
                dp[i + 1][j].first = 1;
                if (bits[j] == 0 && P2[i] == 0)
                {
                    dp[i + 2][j + 1].first = 2;
                }
                if (bits[j] == 1 && i < N - 1 && P2[i] == 0 && P2[i + 1] == 0)
                {
                    dp[i + 3][j + 1].first = 3;
                }
                if (i < N - 2 && P2[i] == 0 && P2[i + 1] == 0 && P2[i + 2] == 0)
                {
                    dp[i + 4][j].second = 4;
                }
            }
            if (dp[i][j].second)
            {
                dp[i + 1][j].second = 1;
                if (bits[j] == 1 && P2[i] == 0)
                {
                    dp[i + 2][j + 1].second = 2;
                }
                if (bits[j] == 0 && i < N - 1 && P2[i] == 0 && P2[i + 1] == 0)
                {
                    dp[i + 3][j + 1].second = 3;
                }
                if (i < N - 2 && P2[i] == 0 && P2[i + 1] == 0 && P2[i + 2] == 0)
                {
                    dp[i + 4][j].first = 4;
                }
            }
        }
    }
    int x = N + 2;
    while (true)
    {
        if (x == -1)
            break;
        if (dp[x][M].first)
            break;
        if (dp[x][M].second)
        {
            x += 200;
            break;
        }
        x--;
    }
    int y = M;
    while (x > 0)
    {
        if (x >= 200)
        {
            x -= 200;
            int temp = dp[x][y].second;
            x--;
            for (int i = 1; i < temp; i++)
            {
                x--;
                ans[x] = 1;
            }
            if (temp == 2 || temp == 3)
                y--;
            if (temp < 4)
                x += 200;
        }
        else
        {
            int temp = dp[x][y].first;
            x--;
            for (int i = 1; i < temp; i++)
            {
                x--;
                ans[x] = 1;
            }
            if (temp == 2 || temp == 3)
                y--;
            if (temp == 4)
                x += 200;
        }
    }
    for (int i = 0; i < N; i++)
    {
        // cout << ans[i] << ' ';
        Set(i, ans[i]);
    }
}
/*int main()
{
    long long N, X, K;
    cin >> N >> X >> K;
    int P[N];
    for (int i = 0; i < N; i++)
        P[i] = 0;
    for (int i = 0; i < K; i++)
    {
        int x;
        x = rand() % N;
        P[x] = 1;
    }
    Anna(N, X, K, P);
}*/
#include "Brunolib.h"
#include <bits/stdc++.h>
using namespace std;
long long Bruno(int N, int A[])
{
    long long X = 0;
    long long cur = 0;
    long long mult = 1;
    for (int i = 0; i < N; i++)
    {
        if (A[i])
            cur++;
        else
        {
            if (cur)
            {
                if (cur == 3)
                    mult = 1 - mult;
                if (cur == 2)
                {
                    X *= 2;
                    X += mult;
                }
                if (cur == 1)
                {
                    X *= 2;
                    X += 1 - mult;
                }
            }
            cur = 0;
        }
    }
    if (cur)
    {
        if (cur == 3)
            mult = 1 - mult;
        if (cur == 2)
        {
            X *= 2;
            X += mult;
        }
        if (cur == 1)
        {
            X *= 2;
            X += 1 - mult;
        }
    }
    return X;
}
/*int main()
{
    int N;
    cin >> N;
    int A[N];
    for (int i = 0; i < N; i++)
        cin >> A[i];
    cout << Bruno(N, A);
}*/
# Verdict Execution time Memory Grader output
1 Partially correct 54 ms 2728 KB Output isn't correct - L* = 0
2 Partially correct 52 ms 2720 KB Output isn't correct - L* = 0
3 Partially correct 52 ms 2780 KB Output isn't correct - L* = 0
4 Partially correct 55 ms 2800 KB Output isn't correct - L* = 0
5 Partially correct 50 ms 2688 KB Output isn't correct - L* = 0
6 Partially correct 50 ms 2876 KB Output isn't correct - L* = 0
7 Partially correct 51 ms 2776 KB Output isn't correct - L* = 0
8 Partially correct 54 ms 2792 KB Output isn't correct - L* = 0
9 Partially correct 52 ms 2680 KB Output isn't correct - L* = 0
10 Partially correct 52 ms 2680 KB Output isn't correct - L* = 0
11 Partially correct 52 ms 2724 KB Output isn't correct - L* = 0
12 Partially correct 54 ms 2868 KB Output isn't correct - L* = 0
13 Partially correct 53 ms 2744 KB Output isn't correct - L* = 0
14 Partially correct 55 ms 2740 KB Output isn't correct - L* = 0
15 Partially correct 52 ms 2740 KB Output isn't correct - L* = 0
16 Partially correct 53 ms 2684 KB Output isn't correct - L* = 0
17 Partially correct 52 ms 2748 KB Output isn't correct - L* = 0
18 Partially correct 53 ms 2736 KB Output isn't correct - L* = 0
19 Partially correct 52 ms 2832 KB Output isn't correct - L* = 0
20 Partially correct 54 ms 2676 KB Output isn't correct - L* = 0
21 Partially correct 61 ms 2640 KB Output isn't correct - L* = 0
22 Partially correct 51 ms 2900 KB Output isn't correct - L* = 0
23 Partially correct 52 ms 2740 KB Output isn't correct - L* = 0
24 Partially correct 50 ms 2692 KB Output isn't correct - L* = 0
25 Partially correct 51 ms 2680 KB Output isn't correct - L* = 0
26 Partially correct 59 ms 3188 KB Output isn't correct - L* = 0
27 Partially correct 63 ms 2792 KB Output isn't correct - L* = 0
28 Partially correct 57 ms 2688 KB Output isn't correct - L* = 0
29 Partially correct 52 ms 2672 KB Output isn't correct - L* = 0
30 Partially correct 62 ms 2680 KB Output isn't correct - L* = 0
31 Partially correct 51 ms 2656 KB Output isn't correct - L* = 0
32 Partially correct 50 ms 2700 KB Output is partially correct - L* = 14
33 Partially correct 53 ms 2836 KB Output isn't correct - L* = 0
34 Partially correct 52 ms 2672 KB Output isn't correct - L* = 0
35 Partially correct 52 ms 2684 KB Output isn't correct - L* = 0
36 Partially correct 55 ms 2684 KB Output isn't correct - L* = 0
37 Partially correct 53 ms 2736 KB Output is partially correct - L* = 14
38 Partially correct 64 ms 2880 KB Output isn't correct - L* = 0
39 Partially correct 52 ms 2832 KB Output isn't correct - L* = 0
40 Partially correct 52 ms 2680 KB Output isn't correct - L* = 0