結果

問題 No.2803 Bocching Star
ユーザー sibasyunsibasyun
提出日時 2024-07-12 21:09:20
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 189 ms / 2,000 ms
コード長 3,192 bytes
コンパイル時間 4,791 ms
コンパイル使用メモリ 270,120 KB
実行使用メモリ 6,948 KB
最終ジャッジ日時 2024-07-12 21:10:00
合計ジャッジ時間 9,038 ms
ジャッジサーバーID
(参考情報)
judge2 / judge6
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,820 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 16 ms
6,944 KB
testcase_04 AC 96 ms
6,944 KB
testcase_05 AC 49 ms
6,944 KB
testcase_06 AC 10 ms
6,940 KB
testcase_07 AC 38 ms
6,944 KB
testcase_08 AC 21 ms
6,948 KB
testcase_09 AC 98 ms
6,948 KB
testcase_10 AC 129 ms
6,944 KB
testcase_11 AC 108 ms
6,944 KB
testcase_12 AC 35 ms
6,944 KB
testcase_13 AC 84 ms
6,940 KB
testcase_14 AC 83 ms
6,944 KB
testcase_15 AC 109 ms
6,944 KB
testcase_16 AC 59 ms
6,944 KB
testcase_17 AC 20 ms
6,944 KB
testcase_18 AC 14 ms
6,940 KB
testcase_19 AC 87 ms
6,944 KB
testcase_20 AC 55 ms
6,944 KB
testcase_21 AC 42 ms
6,948 KB
testcase_22 AC 45 ms
6,940 KB
testcase_23 AC 109 ms
6,940 KB
testcase_24 AC 156 ms
6,940 KB
testcase_25 AC 128 ms
6,944 KB
testcase_26 AC 128 ms
6,940 KB
testcase_27 AC 116 ms
6,940 KB
testcase_28 AC 120 ms
6,940 KB
testcase_29 AC 111 ms
6,940 KB
testcase_30 AC 129 ms
6,944 KB
testcase_31 AC 109 ms
6,944 KB
testcase_32 AC 189 ms
6,944 KB
testcase_33 AC 3 ms
6,940 KB
testcase_34 AC 3 ms
6,944 KB
testcase_35 AC 3 ms
6,944 KB
testcase_36 AC 4 ms
6,944 KB
testcase_37 AC 3 ms
6,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#include <atcoder/all>
#include <algorithm>
#include <iostream>
#include <iomanip>
#include <math.h>
#include <random>
#include <chrono>
#include <cstdint>


using namespace std;
using namespace atcoder;
// using mint = modint998244353;
using mint = modint1000000007;
using vi = vector<int>;
using vvi = vector<vector<int>>;
using vl = vector<long long>;
using vvl = vector<vector<long long>>;
using ll = long long;
template <class T> using max_heap = priority_queue<T>;
template <class T> using min_heap = priority_queue<T, vector<T>, greater<>>;
#define rep(i, n) for (int i = 0; i < (int)(n); i++)
#define rep2(i, f, n) for (int i = (int) f; i < (int)(n); i++)
#define repd(i, n, l) for (int i = (int) n; i >= (int) l; i--)
#define all(p) p.begin(),p.end()
vector<pair<int, int>> dydx{{-1, 0}, {1, 0}, {0, -1 }, {0, 1}};
const ll inf = 1LL << 60;
void print(){ putchar(' '); }
void print(bool a){ printf("%d", a); }
void print(int a){ printf("%d", a); }
void print(unsigned a){ printf("%u", a); }
void print(long a){ printf("%ld", a); }
void print(long long a){ printf("%lld", a); }
void print(unsigned long long a){ printf("%llu", a); }
void print(char a){ printf("%c", a); }
void print(char a[]){ printf("%s", a); }
void print(const char a[]){ printf("%s", a); }
void print(float a){ printf("%.15f", a); }
void print(double a){ printf("%.15f", a); }
void print(long double a){ printf("%.15Lf", a); }
void print(const string& a){ for(auto&& i : a) print(i); }
template<class T> void print(const complex<T>& a){ if(a.real() >= 0) print('+'); print(a.real()); if(a.imag() >= 0) print('+'); print(a.imag()); print('i'); }
template<class T> void print(const vector<T>&);
template<class T, size_t size> void print(const array<T, size>&);
template<class T, class L> void print(const pair<T, L>& p);
template<class T, size_t size> void print(const T (&)[size]);
template<class T> void print(const vector<T>& a){ if(a.empty()) return; print(a[0]); for(auto i = a.begin(); ++i != a.end(); ){ putchar(' '); print(*i); } }
template<class T> void print(const deque<T>& a){ if(a.empty()) return; print(a[0]); for(auto i = a.begin(); ++i != a.end(); ){ putchar(' '); print(*i); } }
template<class T, size_t size> void print(const array<T, size>& a){ print(a[0]); for(auto i = a.begin(); ++i != a.end(); ){ putchar(' '); print(*i); } }
template<class T, class L> void print(const pair<T, L>& p){ print(p.first); putchar(' '); print(p.second); }
template<class T, size_t size> void print(const T (&a)[size]){ print(a[0]); for(auto i = a; ++i != end(a); ){ putchar(' '); print(*i); } }
template<class T> void print(const T& a){ cout << a; }


int main() {
    int n, s; cin >> n >> s;
    vector<pair<int, int>> p(n);
    rep(i, n) cin >> p[i].first;
    rep(i, n) p[i].second = i + 1;
    sort(all(p));
    vi ans;
    rep(i, n){
        bool f = true;
        if (i > 0) {
            if (p[i].first - p[i-1].first <= s) f = false;
        }
        if (i < n-1){
            if (p[i+1].first - p[i].first <= s) f = false;
        }
        if (f) ans.push_back(p[i].second);
    }
    cout << ans.size() << endl;
    sort(all(ans));
    print(ans);cout << endl;
    return 0;
}
0