#include #include #include using ll = long long; int main() { int N; ll L; std::cin >> N >> L; std::vector> pos(N * 2); for (int i = 0; i < N; ++i) { std::cin >> pos[i].first; pos[i].second = 1; } for (int i = 0; i < N; ++i) { std::cin >> pos[i + N].first; pos[i + N].second = -1; } std::sort(pos.begin(), pos.end()); // 最初の寿司の位置まで移動する int bitr = 0; while (pos[bitr].second < 0) ++bitr; ll buf = pos[bitr].first; // 最初の寿司までの距離 for (auto& p : pos) { p.first -= buf; if (p.first < 0) p.first += L; } std::sort(pos.begin(), pos.end()); pos.push_back(pos.front()); // 寿司のstack(何周目に取るか) std::vector sushi(N * 2 + 1); sushi[0] = 0; for (int i = 0; i < N * 2; ++i) { sushi[i + 1] = sushi[i] + pos[i].second; } // スタート時点にてstackが正になる場合 ll min = *std::min_element(sushi.begin(), sushi.end()); for (auto& s : sushi) s -= min; ll ans = 0; for (int i = 1; i <= N * 2; ++i) { if (pos[i].second < 0) { ans = std::max(ans, pos[i].first + L * (sushi[i] - 1)); } } std::cout << ans + buf << std::endl; return 0; }