#line 1 "test/aoj_DSL_3_D.test.cpp"
#define PROBLEM "http://judge.u-aizu.ac.jp/onlinejudge/description.jsp?id=DSL_3_D"
#include <cstdio>
#include <vector>
#line 1 "DataStructure/foldable_queue.cpp"
/**
* @brief fold 可能キュー
* @author えびちゃん
*/
#include <cstddef>
#include <stack>
#include <utility>
template <class Monoid>
class foldable_queue {
public:
using size_type = size_t;
using value_type = Monoid;
private:
std::stack<value_type> M_front, M_back;
value_type M_back_folded{};
void M_rotate_to_front() {
if (!M_back.empty()) {
M_front.push(std::move(M_back.top()));
M_back.pop();
}
while (!M_back.empty()) {
M_back.top() += M_front.top();
M_front.push(std::move(M_back.top()));
M_back.pop();
}
M_back_folded = value_type{};
}
public:
size_type size() const { return M_front.size() + M_back.size(); }
bool empty() const noexcept { return M_front.empty() && M_back.empty(); }
void push(value_type const& x) {
M_back.push(x);
M_back_folded += M_back.top();
}
template <typename... Args>
void emplace(Args&&... args) {
M_back.emplace(std::forward<Args>(args)...);
M_back_folded += M_back.top();
}
void pop() {
if (M_front.empty()) M_rotate_to_front();
M_front.pop();
}
value_type fold() const {
if (M_front.empty()) return M_back_folded;
return M_front.top() + M_back_folded;
}
};
#line 1 "utility/monoid/min.cpp"
/**
* @brief min を得る演算のモノイド
* @author えびちゃん
*/
#include <algorithm>
#line 11 "utility/monoid/min.cpp"
#line 1 "utility/limits.cpp"
/**
* @brief 型依存の定数
* @author えびちゃん
*/
#include <limits>
#line 11 "utility/limits.cpp"
template <typename Tp>
class limits: public std::numeric_limits<Tp> {};
template <typename T1, typename T2>
class limits<std::pair<T1, T2>> {
public:
static constexpr auto min() {
return std::make_pair(limits<T1>::min(), limits<T2>::min());
}
static constexpr auto max() {
return std::make_pair(limits<T1>::max(), limits<T2>::max());
}
};
#line 13 "utility/monoid/min.cpp"
template <typename Tp>
class min_monoid {
public:
using value_type = Tp;
private:
value_type M_x = limits<Tp>::max();
public:
min_monoid() = default; // identity
min_monoid(value_type const& x): M_x(x) {}
min_monoid& operator +=(min_monoid const& that) {
M_x = std::min(M_x, that.M_x);
return *this;
}
friend bool operator ==(min_monoid const& lhs, min_monoid const& rhs) {
return lhs.M_x == rhs.M_x;
}
friend min_monoid operator +(min_monoid lhs, min_monoid const& rhs) {
return lhs += rhs;
}
friend bool operator !=(min_monoid const& lhs, min_monoid const& rhs) {
return !(lhs == rhs);
}
value_type const& get() const { return M_x; }
};
#line 8 "test/aoj_DSL_3_D.test.cpp"
int main() {
size_t n, k;
scanf("%zu %zu", &n, &k);
foldable_queue<min_monoid<int>> fq;
for (size_t i = 0; i < k; ++i) {
int a;
scanf("%d", &a);
fq.push(a);
}
std::vector<int> res{fq.fold().get()};
for (size_t i = k; i < n; ++i) {
int a;
scanf("%d", &a);
fq.pop();
fq.push(a);
res.push_back(fq.fold().get());
}
for (size_t i = 0; i < res.size(); ++i)
printf("%d%c", res[i], i+1<res.size()? ' ': '\n');
}