CSES - Datatähti 2018 alku - Results
Submission details
Task:Bittijono
Sender:eliaskosunen
Submission time:2017-10-13 20:44:15 +0300
Language:C++
Status:READY
Result:0
Feedback
groupverdictscore
#10
#20
#30
#40
Test results
testverdicttimegroup
#1ACCEPTED0.06 s1details
#20.06 s1details
#30.07 s1details
#40.06 s1details
#50.07 s1details
#60.05 s1details
#70.04 s1details
#80.06 s1details
#90.06 s1details
#100.06 s1details
#110.11 s2details
#120.06 s2details
#130.39 s2details
#140.05 s2details
#150.40 s2details
#160.40 s2details
#170.78 s2details
#180.39 s2details
#190.40 s2details
#200.41 s2details
#21--3details
#22--3details
#23--3details
#24--3details
#25--3details
#26--3details
#27--3details
#28--3details
#29--3details
#30--3details
#310.47 s4details
#320.47 s4details
#330.39 s4details
#340.50 s4details
#350.34 s4details
#360.35 s4details
#370.46 s4details
#380.34 s4details
#390.46 s4details
#400.35 s4details

Code

#include <malloc.h>
#include <algorithm>
#include <array>
#include <bitset>
#include <cmath>
#include <cstring>
#include <iostream>
#include <map>
#include <string>
#include <unordered_map>
#include <vector>

/* using bitset_type = std::bitset<64>; */
struct bitset_type {
    std::bitset<64> bits{};
    std::size_t len{};

    constexpr bitset_type() = default;
    constexpr bitset_type(uint64_t val, std::size_t l) : bits(val), len(l) {}

    std::string str() {
        auto s = bits.to_string();
        return s.substr(s.size() - len);
    }

    bool operator==(const bitset_type& b) const {
        return bits.to_ullong() == b.bits.to_ullong() && len == b.len;
    }
    bool operator<(const bitset_type& b) const {
        return bits.to_ullong() < b.bits.to_ullong() && len < b.len;
    }
};

int ceil_log2(unsigned long long x) {
#ifndef __has_builtin
#define __has_builtin(x) 0
#endif

#if __has_builtin(__builtin_clzll)
#define FAST_LOG2(x)                      \
    (sizeof(unsigned long long) * 8 - 1 - \
     __builtin_clzll((unsigned long long)(x)))
#define FAST_LOG2_UP(x)                        \
    ({                                         \
        unsigned long long log = FAST_LOG2(x); \
        ((x) - (1 << log)) ? log + 1 : log;    \
    })
    return FAST_LOG2_UP(x);
    /* return ((sizeof(unsigned long long) * 8 - 1) - __builtin_clzll(x)) + */
    /*        (!!(x & (x - 1))); */
#else
    static const unsigned long long t[6] = {
        0xFFFFFFFF00000000ull, 0x00000000FFFF0000ull, 0x000000000000FF00ull,
        0x00000000000000F0ull, 0x000000000000000Cull, 0x0000000000000002ull};

    int y = (((x & (x - 1)) == 0) ? 0 : 1);
    int j = 32;
    int i;

    for (i = 0; i < 6; i++) {
        int k = (((x & t[i]) == 0) ? 0 : j);
        y += k;
        x >>= k;
        j >>= 1;
    }

    return y;

#endif
}

std::vector<bitset_type>& generate_all(int n) {
    static auto sets = [n]() -> std::vector<bitset_type> {
        std::vector<bitset_type> s;
        const auto max_i = std::pow(n, 2.5);
        for (auto i = 1; i <= max_i; ++i) {
            const auto cl2 = ceil_log2(i + 1);
            for (auto l = cl2; l <= 4 + cl2; ++l) {
                if (l == 0) continue;
                s.emplace_back(i, l);
            }
        }
        /* std::sort(s.begin(), s.end()); */
        /* auto last = std::unique(s.begin(), s.end()); */
        /* s.erase(last, s.end()); */
        return s;
    }();
    return sets;
}

void subsequences(std::vector<std::string>& subseqs, char* prefix,
                  int prefixLength, const char* suffix) {
    if (prefixLength >= 2) {
        subseqs.push_back(prefix);
    }
    for (size_t i = 0; i < std::strlen(suffix); ++i) {
        prefix[prefixLength] = suffix[i];
        prefix[prefixLength + 1] = '\0';
        subsequences(subseqs, prefix, prefixLength + 1, suffix + i + 1);
    }
}

/* void subsequences(std::vector<std::string>& subseqs, const std::string&
 * prefix, */
/*                   const std::string& suffix) { */
/*     if (prefix.length() >= 1) subseqs.push_back(prefix); */
/*     for (std::size_t i = 0; i < suffix.length(); ++i) { */
/*         subsequences(subseqs, prefix + suffix[i], suffix.substr(i + 1)); */
/*     } */
/* } */

int main() {
    /* int n; */
    /* std::cin >> n; */
    /* std::cout << get(n).str() << '\n'; */
    int n = 25;
    std::cin >> n;

    std::map<int, bitset_type> map;
    for (auto& b : generate_all(std::sqrt(n))) {
        /* std::cout << b.str() << ":\t\t"; */

        std::vector<std::string> subs;
        subs.reserve(n * n);
        auto prefix = new char[b.str().length() + 1];
        /* char* prefix = (char*)malloc(b.len + 1); */
        /* subsequences(subs, prefix, b.str()); */
        subsequences(subs, prefix, 0, b.str().c_str());
        std::sort(subs.begin(), subs.end());
        auto last = std::unique(subs.begin(), subs.end());
        subs.erase(last, subs.end());
        const auto size = subs.size() + 1;
        /* std::cout << size << '\n'; */

        auto key = map.find(size);
        if (key == map.end()) {
            map.insert({size, b});
        } else {
            if (key->second.len > size) {
                key->second = b;
            }
        }
        delete[] prefix;
    }
    /* for (auto& m : map) { */
    /*     std::cout << m.first << ":\t\t" << m.second.str() << '\n'; */
    /* } */
    std::cout << map[n].str() << '\n';
}

Test details

Test 1

Group: 1

Verdict: ACCEPTED

input
1

correct output
1

user output
1

Test 2

Group: 1

Verdict:

input
2

correct output
11

user output
01

Test 3

Group: 1

Verdict:

input
3

correct output
10

user output
(empty)

Test 4

Group: 1

Verdict:

input
4

correct output
1111

user output
001

Test 5

Group: 1

Verdict:

input
5

correct output
110

user output
010

Test 6

Group: 1

Verdict:

input
6

correct output
101

user output
0001

Test 7

Group: 1

Verdict:

input
7

correct output
1110

user output
0011

Test 8

Group: 1

Verdict:

input
8

correct output
1100

user output
00001

Test 9

Group: 1

Verdict:

input
9

correct output
1101

user output
0110

Test 10

Group: 1

Verdict:

input
10

correct output
1001

user output
00011

Test 11

Group: 2

Verdict:

input
38

correct output
1101011

user output
0010010

Test 12

Group: 2

Verdict:

input
13

correct output
11011

user output
000011

Test 13

Group: 2

Verdict:

input
90

correct output
111001010

user output
00001000011

Test 14

Group: 2

Verdict:

input
25

correct output
110010

user output
0000101

Test 15

Group: 2

Verdict:

input
82

correct output
111001101

user output
000100101

Test 16

Group: 2

Verdict:

input
94

correct output
1100011110

user output
0000100110

Test 17

Group: 2

Verdict:

input
100

correct output
1111001001

user output
0000100101

Test 18

Group: 2

Verdict:

input
99

correct output
110010010

user output
0000110110

Test 19

Group: 2

Verdict:

input
98

correct output
110110010

user output
0000101011

Test 20

Group: 2

Verdict:

input
92

correct output
100110001

user output
0000101100

Test 21

Group: 3

Verdict:

input
1666

correct output
101101100100101

user output
(empty)

Test 22

Group: 3

Verdict:

input
897

correct output
11101001101010

user output
(empty)

Test 23

Group: 3

Verdict:

input
4466

correct output
111101010110100101

user output
(empty)

Test 24

Group: 3

Verdict:

input
4240

correct output
11011001011010101

user output
(empty)

Test 25

Group: 3

Verdict:

input
3089

correct output
1011001010100101

user output
(empty)

Test 26

Group: 3

Verdict:

input
4697

correct output
11010101101010110

user output
(empty)

Test 27

Group: 3

Verdict:

input
4608

correct output
11010110101001010

user output
(empty)

Test 28

Group: 3

Verdict:

input
4625

correct output
111011001100101001

user output
(empty)

Test 29

Group: 3

Verdict:

input
4611

correct output
11010101010101100

user output
(empty)

Test 30

Group: 3

Verdict:

input
4917

correct output
10110100101010110

user output
(empty)

Test 31

Group: 4

Verdict:

input
178555

correct output
1011010110110101010110110

user output
(empty)

Test 32

Group: 4

Verdict:

input
864856

correct output
10111010110110100100101010010

user output
(empty)

Test 33

Group: 4

Verdict:

input
112146

correct output
1101110101011001100100110

user output
(empty)

Error:
terminate called after throwing an instance of 'std::length_error'
  what():  vector::reserve

Test 34

Group: 4

Verdict:

input
741124

correct output
1011010011010101100101011010

user output
(empty)

Test 35

Group: 4

Verdict:

input
511902

correct output
1011010100011010100101001110

user output
(empty)

Test 36

Group: 4

Verdict:

input
920019

correct output
11100100101101010101001101010

user output
(empty)

Test 37

Group: 4

Verdict:

input
933943

correct output
10101011010100100110100111001

user output
(empty)

Test 38

Group: 4

Verdict:

input
973410

correct output
1011010101011010101010101001

user output
(empty)

Test 39

Group: 4

Verdict:

input
954943

correct output
10110110010011010100100110101

user output
(empty)

Test 40

Group: 4

Verdict:

input
911674

correct output
1010110010110101010101010110

user output
(empty)