Submission #21579

# Submission time Handle Problem Language Result Execution time Memory
21579 2017-04-14T09:55:44 Z Ushio Broken Device (JOI17_broken_device) C++14
85 / 100
78 ms 4644 KB
#include "Annalib.h"
#include <algorithm>
#include <iostream>
#include <cstdlib>
#include <vector>
using namespace std;

namespace {
    const int SZ = 4;
    const int FCT[] = {2, 3, 3, 3};

    int bitCount(int64_t x) {
        int ret = 0;
        while (x) {
            ++ret;
            x &= x - 1;
        }
        return ret;
    }
};

void Anna( int N, long long X, int K, int P[] ){
    vector<int> per(N + FCT[SZ - 1]);
    srand(100);
    for (int i = 0; i < N + FCT[SZ - 1]; ++i) {
        per[i] = i;
    }
    for (int i = 0; i < N; ++i) {
        int pos = i + rand() % (N - i);
        swap(per[i], per[pos]);
    }
    int bit = 0;
    int validity = 0;
    vector<bool> bad(N + FCT[SZ - 1], false);
    for (int i = 0; i < FCT[SZ - 1]; ++i) {
        bad[per[N + i]] = true;
    }
    for (int i = 0; i < K; ++i) {
        bad[P[i]] = true;
    }
    int op = bitCount(X) > 30;
    bool modeSet = false;
    int step = 0;
    for (int i = 0; i < N; ++i) {
        if (validity == 0) {
            if (modeSet) {
                bool ok = bad[per[i]];
                for (int j = 1; j <= FCT[step]; ++j) {
                    ok |= bad[per[i + j]] && bit + j - 1 <= 59 && 
                        ((X & (1LL << (bit + j - 1))) > 0) != op;
                }
                if (ok) {
                    Set(per[i], 0);
                    validity = 0;
                } else {
                    Set(per[i], 1);
                    validity = FCT[step];
                    step = (step + 1) % SZ;
                }
            } else {
                if (bad[per[i]] || (bad[per[i + 1]] && op == 1)) {
                    Set(per[i], 0);
                    validity = 0;
                } else {
                    Set(per[i], 1);
                    validity = 1;
                }
            }
        } else {
            if (modeSet) {
                if (bit <= 59) {
                    if (X & (1LL << bit)) {
                        Set(per[i], 1 ^ op);
                    } else {
                        Set(per[i], op);
                    }
                    bit++;
                } else {
                    Set(per[i], op);
                }
                validity--;
            } else {
                Set(per[i], op);
                modeSet = true;
                validity = 0;
            }
        }
    }
    cerr << "In:  " << X << endl;
}
#include "Brunolib.h"
#include <algorithm>
#include <iostream>
#include <cstdlib>
#include <vector>
using namespace std;

namespace {
    const int SZ = 4;
    const int FCT[] = {2, 3, 3, 3};
};

long long Bruno( int N, int A[] ){
    vector<int> per(N + FCT[1]);
    srand(100);
    for (int i = 0; i < N + FCT[1]; ++i) {
        per[i] = i;
    }
    for (int i = 0; i < N; ++i) {
        int pos = i + rand() % (N - i);
        swap(per[i], per[pos]);
    }
    int validity = 0;
    int bit = 0;
    int64_t ans = 0;
    bool modeSet = false;
    int op;
    int step = 0;
    for (int i = 0; i < N; ++i) {
        if (validity == 0) {
            if (modeSet) {
                if (A[per[i]]) {
                    validity = FCT[step];
                    step = (step + 1) % SZ;
                } else {
                    validity = 0;
                }
            } else {
                validity = A[per[i]];
            }
        } else {
            if (modeSet) {
                if (bit <= 59) {
                    ans |= ((int64_t) A[per[i]] ^ op) << bit;
                    ++bit;
                }
                validity--;
            } else {
                op = A[per[i]];
                modeSet = true;
                validity = 0;
            }
        }
    }
    cerr << "Out: " << ans << endl;
    return ans;
}
# Verdict Execution time Memory Grader output
1 Partially correct 32 ms 4644 KB Output is partially correct - L* = 39
2 Partially correct 52 ms 4644 KB Output is partially correct - L* = 39
3 Partially correct 56 ms 4644 KB Output is partially correct - L* = 37
4 Correct 62 ms 4644 KB Output is correct - L* = 40
5 Correct 45 ms 4644 KB Output is correct - L* = 40
6 Partially correct 42 ms 4644 KB Output is partially correct - L* = 39
7 Correct 55 ms 4644 KB Output is correct - L* = 40
8 Correct 55 ms 4644 KB Output is correct - L* = 40
9 Correct 52 ms 4644 KB Output is correct - L* = 40
10 Partially correct 48 ms 4644 KB Output is partially correct - L* = 37
11 Correct 41 ms 4644 KB Output is correct - L* = 40
12 Partially correct 38 ms 4644 KB Output is partially correct - L* = 38
13 Correct 59 ms 4644 KB Output is correct - L* = 40
14 Correct 55 ms 4644 KB Output is correct - L* = 40
15 Correct 49 ms 4644 KB Output is correct - L* = 40
16 Correct 42 ms 4644 KB Output is correct - L* = 40
17 Correct 49 ms 4644 KB Output is correct - L* = 40
18 Correct 52 ms 4644 KB Output is correct - L* = 40
19 Correct 36 ms 4644 KB Output is correct - L* = 40
20 Correct 59 ms 4644 KB Output is correct - L* = 40
21 Correct 52 ms 4644 KB Output is correct - L* = 40
22 Correct 41 ms 4644 KB Output is correct - L* = 40
23 Correct 49 ms 4644 KB Output is correct - L* = 40
24 Partially correct 52 ms 4644 KB Output is partially correct - L* = 39
25 Partially correct 41 ms 4644 KB Output is partially correct - L* = 38
26 Correct 49 ms 4644 KB Output is correct - L* = 40
27 Partially correct 48 ms 4644 KB Output is partially correct - L* = 38
28 Partially correct 52 ms 4644 KB Output is partially correct - L* = 39
29 Correct 59 ms 4644 KB Output is correct - L* = 40
30 Correct 56 ms 4644 KB Output is correct - L* = 40
31 Correct 41 ms 4644 KB Output is correct - L* = 40
32 Partially correct 52 ms 4644 KB Output is partially correct - L* = 38
33 Correct 59 ms 4644 KB Output is correct - L* = 40
34 Partially correct 45 ms 4644 KB Output is partially correct - L* = 39
35 Correct 49 ms 4644 KB Output is correct - L* = 40
36 Correct 57 ms 4644 KB Output is correct - L* = 40
37 Correct 52 ms 4644 KB Output is correct - L* = 40
38 Partially correct 78 ms 4644 KB Output is partially correct - L* = 38
39 Partially correct 35 ms 4644 KB Output is partially correct - L* = 39
40 Correct 62 ms 4644 KB Output is correct - L* = 40