#include #include #include #include #include #include int main() { int n = 0; std::cin >> n; std::priority_queue< std::pair, std::vector< std::pair >, /* std::function, std::pair)> > my([](auto const & a, auto const & b)->bool { if(a.first < b.first) return true; if(a.second < b.second) return true; return false; });*/ std::greater> > my; std::vector e; for( int i = 0; i < n; ++i ) { int tmp; std::cin >> tmp; my.push({tmp, 0}); } for( int i = 0; i < n; ++i ) { int tmp; std::cin >> tmp; e.push_back(tmp/2); } int max_count_min = 1000000; for(int i = 0; i < n; ++i) { auto que = my; int max_count = 0; for(int j = 0; j < n; ++j){ auto selected = que.top(); // std::cout << selected.first << ", " << selected.second << std::endl; que.pop(); selected.second++; selected.first += e[(i+j)%n]; que.push(selected); if(max_count < selected.second) max_count = selected.second; } if(max_count_min > max_count) max_count_min = max_count; } std::cout << max_count_min << std::endl; return 0; }