結果

問題 No.1110 好きな歌
ユーザー syomu
提出日時 2020-07-10 22:36:40
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
RE  
実行時間 -
コード長 944 bytes
コンパイル時間 1,734 ms
コンパイル使用メモリ 170,660 KB
実行使用メモリ 6,824 KB
最終ジャッジ日時 2024-10-11 09:59:10
合計ジャッジ時間 13,354 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 5 RE * 46
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h> //全てのヘッダファイルをインクルード

//ループ
#define rep(i, n) for(int i = 0; i < (n); i++) //普通のループ
#define repr(i, n) for(int i = n; i >= 0; i--) //逆ループ

//型名省略
typedef long long ll;
//値
static const ll MX = 100005;
static const ll MX_ll = 1e18;

using namespace std;

//ソート
#define SIZE_OF_ARRAY(array) (sizeof(array)/sizeof(array[0]))

//#include "./lib/generic/search.h"

int main(){
    int n, d;
    cin >> n >> d;
    int a[n], b[n], amax=0;
    rep(i, n){
        cin >> a[i];
        b[i] = a[i];
        amax = max(amax, a[i]);
    }
    int ans[amax];
    std::sort(b, b + SIZE_OF_ARRAY(b));
    int cnt = 0;
    rep(i, n){
        cnt = 0;
        rep(j, n){
            if(b[i]<b[j]) break;
            if(i!=j && b[i]-b[j]>=d) cnt++;
        }
        ans[b[i]] = cnt;
    }
    rep(i, n){
        cout << ans[a[i]] << endl;
    }
    return 0;
}
0