/* Zlozonosc w rozumieniu liczba wywolan CzyCieplo. Wersja skrocona. O(d lg r + d lg d) */ #include "cielib.h" #include <algorithm> #include <iostream> #include <vector> int trash, max_value = 0; std::vector<int> result; std::vector<bool> s; bool over = false; void add(int value) { max_value += value; for (int i = 0; i < podajD(); ++i) { if (s[i] == true) { result[i] += value; } } } void purify(int value, int q) { for (int i = 0; i < q; ++i) { if (s[i] == false) { result[i] = value; } } } // O(1), 2 bool is_last(int i, int zero = 0, int one = 1) { purify(zero, i); result[i] = zero; czyCieplo(result.data()); result[i] = one; max_value = std::max(max_value, 1); return czyCieplo(result.data()); } // O(1), 2 bool check(int i, int zero = 0, int one = 1) { purify(zero, podajD()); czyCieplo(result.data()); purify(one, i + 1); bool fresult = czyCieplo(result.data()); purify(zero, i); return fresult; } // O(lg d) template <int ZERO = 0, int ONE = 1> void extend_s() { // ZERO ONE PART // Kompatybilnosc wsteczna ze stara wersja. // Da sie to napisac ladniej. if (ZERO == 0) { add(1); if (check(podajD() - 1) == false) { extend_s<2, 1>(); // Clean: for (int i = 0; i < podajD(); ++i) { if (s[i] == false) { result[i] = 1; } } if (std::find(std::begin(s), std::end(s), false) == std::end(s)) { add(-1); for (auto &x : result) { if (x < 0) { x = 0; } } } // Answer: znalazlem(result.data()); } } // NORMAL PART std::vector<size_t> available; for (int i = 0; i < podajD(); ++i) { if (s[i] == false) { available.push_back(i); } } while (true) { const auto it = std::lower_bound( available.begin(), available.end(), 0, [](size_t const &i, int) { return !check(i, ZERO, ONE); }); size_t i = *it; s[i] = true; if (is_last(i, ZERO, ONE) == true) { if (ZERO != 0) { result[i] = 0; } return; } if (ZERO != 0) { result[i] = 0; } available.erase(it); } } // O(lg r) bool check_depth(int d) { if (max_value + d == podajR()) { return false; } add(d); czyCieplo(result.data()); add(1); const bool fresult = czyCieplo(result.data()); add(-(d + 1)); return fresult; } // O(lg r) void improve_size() { czyCieplo(result.data()); max_value = *std::max_element(std::begin(result), std::end(result)); int p = 0, q = podajR() - max_value, dist = (q - p); while (dist > 0) { int tmp = p + (dist / 2); if (check_depth(tmp) == true) { p = 1 + tmp; dist -= (dist / 2) + 1; } else { dist /= 2; } } add(p); } // O(0) bool loop() { if (max_value == podajR()) { return false; } for (auto x : s) { if (x == false) { return true; } } return false; } // Zlozonos rowna zlozonosci programu int main() { s.resize(podajD(), false); result.resize(podajD(), 0); czyCieplo(result.data()); while (over == false && loop() == true) { extend_s(); improve_size(); } znalazlem(result.data()); }
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 | /* Zlozonosc w rozumieniu liczba wywolan CzyCieplo. Wersja skrocona. O(d lg r + d lg d) */ #include "cielib.h" #include <algorithm> #include <iostream> #include <vector> int trash, max_value = 0; std::vector<int> result; std::vector<bool> s; bool over = false; void add(int value) { max_value += value; for (int i = 0; i < podajD(); ++i) { if (s[i] == true) { result[i] += value; } } } void purify(int value, int q) { for (int i = 0; i < q; ++i) { if (s[i] == false) { result[i] = value; } } } // O(1), 2 bool is_last(int i, int zero = 0, int one = 1) { purify(zero, i); result[i] = zero; czyCieplo(result.data()); result[i] = one; max_value = std::max(max_value, 1); return czyCieplo(result.data()); } // O(1), 2 bool check(int i, int zero = 0, int one = 1) { purify(zero, podajD()); czyCieplo(result.data()); purify(one, i + 1); bool fresult = czyCieplo(result.data()); purify(zero, i); return fresult; } // O(lg d) template <int ZERO = 0, int ONE = 1> void extend_s() { // ZERO ONE PART // Kompatybilnosc wsteczna ze stara wersja. // Da sie to napisac ladniej. if (ZERO == 0) { add(1); if (check(podajD() - 1) == false) { extend_s<2, 1>(); // Clean: for (int i = 0; i < podajD(); ++i) { if (s[i] == false) { result[i] = 1; } } if (std::find(std::begin(s), std::end(s), false) == std::end(s)) { add(-1); for (auto &x : result) { if (x < 0) { x = 0; } } } // Answer: znalazlem(result.data()); } } // NORMAL PART std::vector<size_t> available; for (int i = 0; i < podajD(); ++i) { if (s[i] == false) { available.push_back(i); } } while (true) { const auto it = std::lower_bound( available.begin(), available.end(), 0, [](size_t const &i, int) { return !check(i, ZERO, ONE); }); size_t i = *it; s[i] = true; if (is_last(i, ZERO, ONE) == true) { if (ZERO != 0) { result[i] = 0; } return; } if (ZERO != 0) { result[i] = 0; } available.erase(it); } } // O(lg r) bool check_depth(int d) { if (max_value + d == podajR()) { return false; } add(d); czyCieplo(result.data()); add(1); const bool fresult = czyCieplo(result.data()); add(-(d + 1)); return fresult; } // O(lg r) void improve_size() { czyCieplo(result.data()); max_value = *std::max_element(std::begin(result), std::end(result)); int p = 0, q = podajR() - max_value, dist = (q - p); while (dist > 0) { int tmp = p + (dist / 2); if (check_depth(tmp) == true) { p = 1 + tmp; dist -= (dist / 2) + 1; } else { dist /= 2; } } add(p); } // O(0) bool loop() { if (max_value == podajR()) { return false; } for (auto x : s) { if (x == false) { return true; } } return false; } // Zlozonos rowna zlozonosci programu int main() { s.resize(podajD(), false); result.resize(podajD(), 0); czyCieplo(result.data()); while (over == false && loop() == true) { extend_s(); improve_size(); } znalazlem(result.data()); } |