結果

問題 No.1110 好きな歌
ユーザー chocono2230chocono2230
提出日時 2020-07-10 21:39:43
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 378 ms / 5,000 ms
コード長 896 bytes
コンパイル時間 1,671 ms
コンパイル使用メモリ 176,172 KB
実行使用メモリ 5,632 KB
最終ジャッジ日時 2024-10-11 08:26:37
合計ジャッジ時間 12,673 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 2 ms
5,248 KB
testcase_03 AC 2 ms
5,248 KB
testcase_04 AC 2 ms
5,248 KB
testcase_05 AC 2 ms
5,248 KB
testcase_06 AC 2 ms
5,248 KB
testcase_07 AC 2 ms
5,248 KB
testcase_08 AC 2 ms
5,248 KB
testcase_09 AC 2 ms
5,248 KB
testcase_10 AC 2 ms
5,248 KB
testcase_11 AC 2 ms
5,248 KB
testcase_12 AC 2 ms
5,248 KB
testcase_13 AC 2 ms
5,248 KB
testcase_14 AC 2 ms
5,248 KB
testcase_15 AC 2 ms
5,248 KB
testcase_16 AC 3 ms
5,248 KB
testcase_17 AC 3 ms
5,248 KB
testcase_18 AC 2 ms
5,248 KB
testcase_19 AC 3 ms
5,248 KB
testcase_20 AC 3 ms
5,248 KB
testcase_21 AC 3 ms
5,248 KB
testcase_22 AC 3 ms
5,248 KB
testcase_23 AC 2 ms
5,248 KB
testcase_24 AC 221 ms
5,248 KB
testcase_25 AC 265 ms
5,248 KB
testcase_26 AC 138 ms
5,248 KB
testcase_27 AC 265 ms
5,248 KB
testcase_28 AC 157 ms
5,248 KB
testcase_29 AC 311 ms
5,248 KB
testcase_30 AC 150 ms
5,248 KB
testcase_31 AC 97 ms
5,248 KB
testcase_32 AC 342 ms
5,376 KB
testcase_33 AC 174 ms
5,248 KB
testcase_34 AC 240 ms
5,248 KB
testcase_35 AC 368 ms
5,632 KB
testcase_36 AC 41 ms
5,248 KB
testcase_37 AC 102 ms
5,248 KB
testcase_38 AC 307 ms
5,248 KB
testcase_39 AC 230 ms
5,248 KB
testcase_40 AC 290 ms
5,248 KB
testcase_41 AC 23 ms
5,248 KB
testcase_42 AC 334 ms
5,376 KB
testcase_43 AC 307 ms
5,248 KB
testcase_44 AC 371 ms
5,632 KB
testcase_45 AC 376 ms
5,632 KB
testcase_46 AC 372 ms
5,504 KB
testcase_47 AC 377 ms
5,632 KB
testcase_48 AC 372 ms
5,632 KB
testcase_49 AC 370 ms
5,632 KB
testcase_50 AC 372 ms
5,632 KB
testcase_51 AC 370 ms
5,504 KB
testcase_52 AC 378 ms
5,632 KB
testcase_53 AC 378 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#define rep(i,n) for(int i = 0; i < (int)(n); i++)
#define rrep(ri,n) for(int ri = (int)(n-1); ri >= 0; ri--)
#define rep2(i,x,n) for(int i = (int)(x); i < (int)(n); i++)
#define rrep2(ri,x,n) for(int ri = (int)(n-1); ri >= (int)(x); ri--)
#define repit(itr,x) for(auto itr = x.begin(); itr != x.end(); itr++)
#define rrepit(ritr,x) for(auto ritr = x.rbegin(); ritr != x.rend(); ritr++)
#define ALL(x) x.begin(), x.end()
using ll = long long;
using namespace std;

int main(){
  int n, d;
  cin >> n >> d;
  vector<pair<int, int>> vp(n);
  rep(i, n){
    int in;
    cin >> in;
    vp.at(i) = make_pair(in, i);
  }
  vector<int> ans(n);
  sort(ALL(vp));
  rep(i, n){
    auto p = vp.at(i);
    int co = lower_bound(vp.begin(), vp.end(), make_pair(p.first-d+1, -1)) - vp.begin();
    ans.at(p.second) = co;
  }
  rep(i, n){
    cout << ans.at(i) << endl;
  }
  return 0;
}
0