#include <iostream> #include <algorithm> using namespace std; const int maxA = 1e5; int n, okres[maxA], nr = 0, nrAdd, najed[2] = { -1, -1 }; int wyn, NrMax = 1; char tab[maxA]; bool juz() { for (int i = 0; i < nr; i++) if (okres[i] > 0) return true; return false; } int nrMax(int x) { if (najed[0] == -1) { if (najed[1] == -1) return x; if (okres[najed[1]] + 2 > okres[x]) return najed[1]; return x; } if (najed[1] == -1) if (okres[najed[0]] + 2 > okres[x]) return najed[0]; else return x; if (okres[najed[1]] > okres[najed[0]]) if (okres[x] > okres[najed[1]] + 2) return x; else return najed[1]; if (okres[x] > okres[najed[0]] + 2) return x; return najed[0]; } void runda(int ile, int bez) { for (int i = 0; i < nr; i++) if (i != bez) { int zmiejsz = 2 * ile; if (i == najed[0] || i == najed[1]) zmiejsz = ile; if (okres[i] > 0) { okres[i] -= zmiejsz; wyn += zmiejsz; if (okres[i] <= 0) { wyn += okres[i]; if (i == najed[1]) najed[1] = -1; else if (i == najed[0]) najed[0] = -1; } } } } int binary(int x) { int L = 0; int R = nr - 1; while (L < R) { int sr = (L + R) / 2; if (okres[sr] == x) return sr; if (okres[sr] < x) L = sr + 1; else R = sr - 1; } if (okres[L] != x) return -1; return L; } int main() { std::ios_base::sync_with_stdio(false); std::cin.tie(NULL); int t; cin >> t; while (t--) { cin >> n; najed[0] = -1; najed[1] = -1; wyn = 0; nr = 0; for (int i = 0; i < n; i++) { cin >> tab[i]; if (tab[i] == '0') { if (i - 1 < 0 || tab[i - 1] == '0') okres[nr]++; else { if (okres[0] != 0) nr++; okres[nr]++; } } else wyn++; } int pIo[2] = { okres[0], okres[nr] }; nrAdd = nr; if (okres[0] > 0) nr++; else if (okres[0] == n) { cout << 0; continue; } else { cout << n; continue; } sort(okres, okres + nr); nr = nrAdd + 1; if (tab[0] == '0') najed[0] = binary(pIo[0]); if (tab[n - 1] == '0') { najed[1] = binary(pIo[1]); if (najed[1] == najed[0]) if (okres[najed[1] + 1] == okres[najed[1]]) najed[1]++; else najed[1]--; } int Max = nr - 1; if (Max == najed[0] || Max == najed[1]) Max--; if (Max == najed[1] && Max == najed[0]) Max -= 2; while (nrMax(Max) >= 0 && okres[nrMax(Max)] > 0) { int mx = nrMax(Max); if (mx == Max) { Max--; if (Max == najed[0] || Max == najed[1]) Max--; if (Max == najed[1] && Max == najed[0]) Max -= 2; } if (mx == najed[1] || mx == najed[0]) { runda(1, mx); if (najed[1] == mx) najed[1] = -1; else najed[0] = -1; } else { runda(2, mx); if (okres[mx] != 1) wyn++; } okres[mx] = 0; } cout << wyn << '\n'; for (int i = 0; i < n; i++) okres[i] = 0; } return 0; }
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 | #include <iostream> #include <algorithm> using namespace std; const int maxA = 1e5; int n, okres[maxA], nr = 0, nrAdd, najed[2] = { -1, -1 }; int wyn, NrMax = 1; char tab[maxA]; bool juz() { for (int i = 0; i < nr; i++) if (okres[i] > 0) return true; return false; } int nrMax(int x) { if (najed[0] == -1) { if (najed[1] == -1) return x; if (okres[najed[1]] + 2 > okres[x]) return najed[1]; return x; } if (najed[1] == -1) if (okres[najed[0]] + 2 > okres[x]) return najed[0]; else return x; if (okres[najed[1]] > okres[najed[0]]) if (okres[x] > okres[najed[1]] + 2) return x; else return najed[1]; if (okres[x] > okres[najed[0]] + 2) return x; return najed[0]; } void runda(int ile, int bez) { for (int i = 0; i < nr; i++) if (i != bez) { int zmiejsz = 2 * ile; if (i == najed[0] || i == najed[1]) zmiejsz = ile; if (okres[i] > 0) { okres[i] -= zmiejsz; wyn += zmiejsz; if (okres[i] <= 0) { wyn += okres[i]; if (i == najed[1]) najed[1] = -1; else if (i == najed[0]) najed[0] = -1; } } } } int binary(int x) { int L = 0; int R = nr - 1; while (L < R) { int sr = (L + R) / 2; if (okres[sr] == x) return sr; if (okres[sr] < x) L = sr + 1; else R = sr - 1; } if (okres[L] != x) return -1; return L; } int main() { std::ios_base::sync_with_stdio(false); std::cin.tie(NULL); int t; cin >> t; while (t--) { cin >> n; najed[0] = -1; najed[1] = -1; wyn = 0; nr = 0; for (int i = 0; i < n; i++) { cin >> tab[i]; if (tab[i] == '0') { if (i - 1 < 0 || tab[i - 1] == '0') okres[nr]++; else { if (okres[0] != 0) nr++; okres[nr]++; } } else wyn++; } int pIo[2] = { okres[0], okres[nr] }; nrAdd = nr; if (okres[0] > 0) nr++; else if (okres[0] == n) { cout << 0; continue; } else { cout << n; continue; } sort(okres, okres + nr); nr = nrAdd + 1; if (tab[0] == '0') najed[0] = binary(pIo[0]); if (tab[n - 1] == '0') { najed[1] = binary(pIo[1]); if (najed[1] == najed[0]) if (okres[najed[1] + 1] == okres[najed[1]]) najed[1]++; else najed[1]--; } int Max = nr - 1; if (Max == najed[0] || Max == najed[1]) Max--; if (Max == najed[1] && Max == najed[0]) Max -= 2; while (nrMax(Max) >= 0 && okres[nrMax(Max)] > 0) { int mx = nrMax(Max); if (mx == Max) { Max--; if (Max == najed[0] || Max == najed[1]) Max--; if (Max == najed[1] && Max == najed[0]) Max -= 2; } if (mx == najed[1] || mx == najed[0]) { runda(1, mx); if (najed[1] == mx) najed[1] = -1; else najed[0] = -1; } else { runda(2, mx); if (okres[mx] != 1) wyn++; } okres[mx] = 0; } cout << wyn << '\n'; for (int i = 0; i < n; i++) okres[i] = 0; } return 0; } |