Task: | Bittijono |
Sender: | eliaskosunen |
Submission time: | 2017-10-13 20:44:15 +0300 |
Language: | C++ |
Status: | READY |
Result: | 0 |
group | verdict | score |
---|---|---|
#1 | WRONG ANSWER | 0 |
#2 | WRONG ANSWER | 0 |
#3 | TIME LIMIT EXCEEDED | 0 |
#4 | RUNTIME ERROR | 0 |
test | verdict | time | group | |
---|---|---|---|---|
#1 | ACCEPTED | 0.06 s | 1 | details |
#2 | WRONG ANSWER | 0.06 s | 1 | details |
#3 | WRONG ANSWER | 0.07 s | 1 | details |
#4 | WRONG ANSWER | 0.06 s | 1 | details |
#5 | WRONG ANSWER | 0.07 s | 1 | details |
#6 | WRONG ANSWER | 0.05 s | 1 | details |
#7 | WRONG ANSWER | 0.04 s | 1 | details |
#8 | WRONG ANSWER | 0.06 s | 1 | details |
#9 | WRONG ANSWER | 0.06 s | 1 | details |
#10 | WRONG ANSWER | 0.06 s | 1 | details |
#11 | WRONG ANSWER | 0.11 s | 2 | details |
#12 | WRONG ANSWER | 0.06 s | 2 | details |
#13 | WRONG ANSWER | 0.39 s | 2 | details |
#14 | WRONG ANSWER | 0.05 s | 2 | details |
#15 | WRONG ANSWER | 0.40 s | 2 | details |
#16 | WRONG ANSWER | 0.40 s | 2 | details |
#17 | WRONG ANSWER | 0.78 s | 2 | details |
#18 | WRONG ANSWER | 0.39 s | 2 | details |
#19 | WRONG ANSWER | 0.40 s | 2 | details |
#20 | WRONG ANSWER | 0.41 s | 2 | details |
#21 | TIME LIMIT EXCEEDED | -- | 3 | details |
#22 | TIME LIMIT EXCEEDED | -- | 3 | details |
#23 | TIME LIMIT EXCEEDED | -- | 3 | details |
#24 | TIME LIMIT EXCEEDED | -- | 3 | details |
#25 | TIME LIMIT EXCEEDED | -- | 3 | details |
#26 | TIME LIMIT EXCEEDED | -- | 3 | details |
#27 | TIME LIMIT EXCEEDED | -- | 3 | details |
#28 | TIME LIMIT EXCEEDED | -- | 3 | details |
#29 | TIME LIMIT EXCEEDED | -- | 3 | details |
#30 | TIME LIMIT EXCEEDED | -- | 3 | details |
#31 | RUNTIME ERROR | 0.47 s | 4 | details |
#32 | RUNTIME ERROR | 0.47 s | 4 | details |
#33 | RUNTIME ERROR | 0.39 s | 4 | details |
#34 | RUNTIME ERROR | 0.50 s | 4 | details |
#35 | RUNTIME ERROR | 0.34 s | 4 | details |
#36 | RUNTIME ERROR | 0.35 s | 4 | details |
#37 | RUNTIME ERROR | 0.46 s | 4 | details |
#38 | RUNTIME ERROR | 0.34 s | 4 | details |
#39 | RUNTIME ERROR | 0.46 s | 4 | details |
#40 | RUNTIME ERROR | 0.35 s | 4 | details |
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))); */#elsestatic 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: WRONG ANSWER
input |
---|
2 |
correct output |
---|
11 |
user output |
---|
01 |
Test 3
Group: 1
Verdict: WRONG ANSWER
input |
---|
3 |
correct output |
---|
10 |
user output |
---|
(empty) |
Test 4
Group: 1
Verdict: WRONG ANSWER
input |
---|
4 |
correct output |
---|
1111 |
user output |
---|
001 |
Test 5
Group: 1
Verdict: WRONG ANSWER
input |
---|
5 |
correct output |
---|
110 |
user output |
---|
010 |
Test 6
Group: 1
Verdict: WRONG ANSWER
input |
---|
6 |
correct output |
---|
101 |
user output |
---|
0001 |
Test 7
Group: 1
Verdict: WRONG ANSWER
input |
---|
7 |
correct output |
---|
1110 |
user output |
---|
0011 |
Test 8
Group: 1
Verdict: WRONG ANSWER
input |
---|
8 |
correct output |
---|
1100 |
user output |
---|
00001 |
Test 9
Group: 1
Verdict: WRONG ANSWER
input |
---|
9 |
correct output |
---|
1101 |
user output |
---|
0110 |
Test 10
Group: 1
Verdict: WRONG ANSWER
input |
---|
10 |
correct output |
---|
1001 |
user output |
---|
00011 |
Test 11
Group: 2
Verdict: WRONG ANSWER
input |
---|
38 |
correct output |
---|
1101011 |
user output |
---|
0010010 |
Test 12
Group: 2
Verdict: WRONG ANSWER
input |
---|
13 |
correct output |
---|
11011 |
user output |
---|
000011 |
Test 13
Group: 2
Verdict: WRONG ANSWER
input |
---|
90 |
correct output |
---|
111001010 |
user output |
---|
00001000011 |
Test 14
Group: 2
Verdict: WRONG ANSWER
input |
---|
25 |
correct output |
---|
110010 |
user output |
---|
0000101 |
Test 15
Group: 2
Verdict: WRONG ANSWER
input |
---|
82 |
correct output |
---|
111001101 |
user output |
---|
000100101 |
Test 16
Group: 2
Verdict: WRONG ANSWER
input |
---|
94 |
correct output |
---|
1100011110 |
user output |
---|
0000100110 |
Test 17
Group: 2
Verdict: WRONG ANSWER
input |
---|
100 |
correct output |
---|
1111001001 |
user output |
---|
0000100101 |
Test 18
Group: 2
Verdict: WRONG ANSWER
input |
---|
99 |
correct output |
---|
110010010 |
user output |
---|
0000110110 |
Test 19
Group: 2
Verdict: WRONG ANSWER
input |
---|
98 |
correct output |
---|
110110010 |
user output |
---|
0000101011 |
Test 20
Group: 2
Verdict: WRONG ANSWER
input |
---|
92 |
correct output |
---|
100110001 |
user output |
---|
0000101100 |
Test 21
Group: 3
Verdict: TIME LIMIT EXCEEDED
input |
---|
1666 |
correct output |
---|
101101100100101 |
user output |
---|
(empty) |
Test 22
Group: 3
Verdict: TIME LIMIT EXCEEDED
input |
---|
897 |
correct output |
---|
11101001101010 |
user output |
---|
(empty) |
Test 23
Group: 3
Verdict: TIME LIMIT EXCEEDED
input |
---|
4466 |
correct output |
---|
111101010110100101 |
user output |
---|
(empty) |
Test 24
Group: 3
Verdict: TIME LIMIT EXCEEDED
input |
---|
4240 |
correct output |
---|
11011001011010101 |
user output |
---|
(empty) |
Test 25
Group: 3
Verdict: TIME LIMIT EXCEEDED
input |
---|
3089 |
correct output |
---|
1011001010100101 |
user output |
---|
(empty) |
Test 26
Group: 3
Verdict: TIME LIMIT EXCEEDED
input |
---|
4697 |
correct output |
---|
11010101101010110 |
user output |
---|
(empty) |
Test 27
Group: 3
Verdict: TIME LIMIT EXCEEDED
input |
---|
4608 |
correct output |
---|
11010110101001010 |
user output |
---|
(empty) |
Test 28
Group: 3
Verdict: TIME LIMIT EXCEEDED
input |
---|
4625 |
correct output |
---|
111011001100101001 |
user output |
---|
(empty) |
Test 29
Group: 3
Verdict: TIME LIMIT EXCEEDED
input |
---|
4611 |
correct output |
---|
11010101010101100 |
user output |
---|
(empty) |
Test 30
Group: 3
Verdict: TIME LIMIT EXCEEDED
input |
---|
4917 |
correct output |
---|
10110100101010110 |
user output |
---|
(empty) |
Test 31
Group: 4
Verdict: RUNTIME ERROR
input |
---|
178555 |
correct output |
---|
1011010110110101010110110 |
user output |
---|
(empty) |
Test 32
Group: 4
Verdict: RUNTIME ERROR
input |
---|
864856 |
correct output |
---|
10111010110110100100101010010 |
user output |
---|
(empty) |
Test 33
Group: 4
Verdict: RUNTIME ERROR
input |
---|
112146 |
correct output |
---|
1101110101011001100100110 |
user output |
---|
(empty) |
Error:
terminate called after throwing an instance of 'std::length_error' what(): vector::rese...
Test 34
Group: 4
Verdict: RUNTIME ERROR
input |
---|
741124 |
correct output |
---|
1011010011010101100101011010 |
user output |
---|
(empty) |
Test 35
Group: 4
Verdict: RUNTIME ERROR
input |
---|
511902 |
correct output |
---|
1011010100011010100101001110 |
user output |
---|
(empty) |
Test 36
Group: 4
Verdict: RUNTIME ERROR
input |
---|
920019 |
correct output |
---|
11100100101101010101001101010 |
user output |
---|
(empty) |
Test 37
Group: 4
Verdict: RUNTIME ERROR
input |
---|
933943 |
correct output |
---|
10101011010100100110100111001 |
user output |
---|
(empty) |
Test 38
Group: 4
Verdict: RUNTIME ERROR
input |
---|
973410 |
correct output |
---|
1011010101011010101010101001 |
user output |
---|
(empty) |
Test 39
Group: 4
Verdict: RUNTIME ERROR
input |
---|
954943 |
correct output |
---|
10110110010011010100100110101 |
user output |
---|
(empty) |
Test 40
Group: 4
Verdict: RUNTIME ERROR
input |
---|
911674 |
correct output |
---|
1010110010110101010101010110 |
user output |
---|
(empty) |