/* やっていることは10107のRubyと一緒なのに、実行速度が違いすぎて泣きたい。 */ #include #include #include #include const int MAX_N = 1500; int main() { int n, i, j, k, pos, target; int n1; int org_mon_list[MAX_N + 2]; int mon_list[MAX_N + 2]; int exp_list[MAX_N]; int low_count = MAX_N; int max_count; std::cin >> n; n1 = n + 1; org_mon_list[0] = 0; for (i = 0; i < n; ++i) { std::cin >> j; pos = i + 1; org_mon_list[pos] = j * n1; while (pos > 1) { if (org_mon_list[pos] < org_mon_list[pos / 2]) { std::swap(org_mon_list[pos], org_mon_list[pos / 2]); pos = pos / 2; } else { break; } } } org_mon_list[n + 1] = 15001 * n1; for (i = 0; i < n; ++i) { std::cin >> j; exp_list[i] = j / 2; } for (i = 0; i < n; ++i) { std::memcpy(mon_list, org_mon_list, sizeof(int) * (n + 2)); max_count = 0; for (j = 0; j < n; ++j) { target = mon_list[1] + (exp_list[(i + j) % n] * n1) + 1; max_count = std::max(max_count, target % n1); k = 1; mon_list[1] = target; while (k * 2 <= n) { if (mon_list[k * 2] < target) { if (mon_list[k * 2 + 1] < target) { if (mon_list[k * 2] < mon_list[k * 2 + 1]) { std::swap(mon_list[k], mon_list[k * 2]); k = k * 2; } else { std::swap(mon_list[k], mon_list[k * 2 + 1]); k = k * 2 + 1; } } else { std::swap(mon_list[k], mon_list[k * 2]); k = k * 2; } } else if (mon_list[k * 2 + 1] < target) { std::swap(mon_list[k], mon_list[k * 2 + 1]); k = k * 2 + 1; } else { break; } } } low_count = std::min(low_count, max_count); } std::cout << low_count << std::endl; return 0; }