#include <iostream> #include <string> #include <vector> #include <algorithm> constexpr int maxN = 1e5; int t; int n; std::string s; int l, r; int lth; std::vector<int> V; int temp; int ans1; // m int ans2; // l + m int ans3; // m + r int ans4; // l + m + r int ans; int piekielnie_dluga_funkcja() { ans1 = 0; for(int i=0; i<V.size(); i++) { temp = V[i] - (4 * i); if(temp > 0) { ans1 += temp; if(temp > 1) { ans1--; } } else { break; } } ans2 = l; for(int i=0; i<V.size(); i++) { temp = V[i] - (4 * i) - 2; if(temp > 0) { ans2 += temp; if(temp > 1) { ans2--; } } else { break; } } ans3 = r; for(int i=0; i<V.size(); i++) { temp = V[i] - (4 * i) - 2; if(temp > 0) { ans3 += temp; if(temp > 1) { ans3--; } } else { break; } } ans4 = l + r - 1; for(int i=0; i<V.size(); i++) { temp = V[i] - (4 * i) - 4; if(temp > 0) { ans4 += temp; if(temp > 1) { ans4--; } } else { break; } } return std::max(ans1, std::max(ans2, std::max(ans3, ans4))); } int main() { std::ios_base::sync_with_stdio(false); std::cin.tie(NULL); std::cout.tie(NULL); std::cin >> t; while(t--) { std::cin >> n; std::cin >> s; l = -1; r = -1; for(int i=0; i<n; i++) { if(s[i] == '1') { l = i; break; } } for(int i=n-1; i>=0; i--) { if(s[i] == '1') { r = n - 1 - i; break; } } if(l == -1 || r == -1) { std::cout << 0 << "\n"; continue; } lth = 0; V.clear(); for(int i=l; i<(n - r); i++) { if(s[i] == '1') { if(lth != 0) { V.push_back(lth); lth = 0; } } else { lth++; } } std::sort(V.rbegin(), V.rend()); ans = piekielnie_dluga_funkcja(); std::cout << n - ans << "\n"; } }
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 | #include <iostream> #include <string> #include <vector> #include <algorithm> constexpr int maxN = 1e5; int t; int n; std::string s; int l, r; int lth; std::vector<int> V; int temp; int ans1; // m int ans2; // l + m int ans3; // m + r int ans4; // l + m + r int ans; int piekielnie_dluga_funkcja() { ans1 = 0; for(int i=0; i<V.size(); i++) { temp = V[i] - (4 * i); if(temp > 0) { ans1 += temp; if(temp > 1) { ans1--; } } else { break; } } ans2 = l; for(int i=0; i<V.size(); i++) { temp = V[i] - (4 * i) - 2; if(temp > 0) { ans2 += temp; if(temp > 1) { ans2--; } } else { break; } } ans3 = r; for(int i=0; i<V.size(); i++) { temp = V[i] - (4 * i) - 2; if(temp > 0) { ans3 += temp; if(temp > 1) { ans3--; } } else { break; } } ans4 = l + r - 1; for(int i=0; i<V.size(); i++) { temp = V[i] - (4 * i) - 4; if(temp > 0) { ans4 += temp; if(temp > 1) { ans4--; } } else { break; } } return std::max(ans1, std::max(ans2, std::max(ans3, ans4))); } int main() { std::ios_base::sync_with_stdio(false); std::cin.tie(NULL); std::cout.tie(NULL); std::cin >> t; while(t--) { std::cin >> n; std::cin >> s; l = -1; r = -1; for(int i=0; i<n; i++) { if(s[i] == '1') { l = i; break; } } for(int i=n-1; i>=0; i--) { if(s[i] == '1') { r = n - 1 - i; break; } } if(l == -1 || r == -1) { std::cout << 0 << "\n"; continue; } lth = 0; V.clear(); for(int i=l; i<(n - r); i++) { if(s[i] == '1') { if(lth != 0) { V.push_back(lth); lth = 0; } } else { lth++; } } std::sort(V.rbegin(), V.rend()); ans = piekielnie_dluga_funkcja(); std::cout << n - ans << "\n"; } } |