#include #include using namespace std; using namespace atcoder; typedef int64_t lint; #define rep(i, n) for(int i=0; i; using vvi = vector>; template inline void vin(vector& v) { rep(i, v.size()) cin >> v.at(i); } template inline bool chmax(T& a, T b) { if (a < b) { a = b; return 1; } return 0; } template inline bool chmin(T& a, T b) { if (a > b) { a = b; return 1; } return 0; } template inline void drop(T x) { cout << x << endl; exit(0); } template void vout(vector v) { rep(i, v.size()) { cout << v.at(i) << ' '; } cout << endl; } constexpr lint LINF = LLONG_MAX/2; using pint = pair; using vp = vector; int main() { lint N, S; cin >> N >> S; vp v(N); lint a=0, b=0, c=0, x, y, z; rep(i, N) { cin >> x; v[i] = {x, i+1}; } v.pb({-LINF, 0}); v.pb({LINF, 0}); sort(all(v)); vi w; repx(i, 1, N+1) { if (v[i].first-v[i-1].first > S && v[i+1].first-v[i].first > S) w.pb(v[i].second); } sort(all(w)); std::cout << w.size() << '\n'; vout(w); }