結果

問題 No.1110 好きな歌
ユーザー syomu
提出日時 2020-07-10 22:41:10
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
TLE  
実行時間 -
コード長 1,009 bytes
コンパイル時間 2,023 ms
コンパイル使用メモリ 168,912 KB
実行使用メモリ 9,728 KB
最終ジャッジ日時 2024-10-11 13:20:51
合計ジャッジ時間 9,499 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 21 TLE * 1 -- * 29
権限があれば一括ダウンロードができます

ソースコード

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], ans[n];
    rep(i, n){
        cin >> a[i];
        b[i] = a[i];
        ans[i] = 0;
    }
    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[i] = cnt;
    }
    rep(i, n){
        rep(j, n){
            if(a[i]==b[j]){
                cout << ans[j] << endl;
                break;
            }
        }
    }
    return 0;
}
0