#include #include #include #include int main() { std::uint32_t N; std::cin >> N; std::vector As(N); for (auto& A : As) std::cin >> A; auto row = N - 1; for (std::size_t col = 0; col < As.front(); ++col) { while (0 < row && As[row] < col + 1) --row; std::cout << row + 1 << ' '; } std::cout << '\n'; }