結果

問題 No.1110 好きな歌
ユーザー どららどらら
提出日時 2020-07-10 22:15:43
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 398 ms / 5,000 ms
コード長 746 bytes
コンパイル時間 1,638 ms
コンパイル使用メモリ 173,084 KB
実行使用メモリ 6,820 KB
最終ジャッジ日時 2024-10-11 09:33:09
合計ジャッジ時間 12,713 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,816 KB
testcase_02 AC 2 ms
6,820 KB
testcase_03 AC 2 ms
6,816 KB
testcase_04 AC 2 ms
6,816 KB
testcase_05 AC 2 ms
6,816 KB
testcase_06 AC 2 ms
6,816 KB
testcase_07 AC 2 ms
6,820 KB
testcase_08 AC 2 ms
6,820 KB
testcase_09 AC 2 ms
6,816 KB
testcase_10 AC 2 ms
6,816 KB
testcase_11 AC 2 ms
6,820 KB
testcase_12 AC 1 ms
6,820 KB
testcase_13 AC 2 ms
6,816 KB
testcase_14 AC 3 ms
6,820 KB
testcase_15 AC 2 ms
6,816 KB
testcase_16 AC 2 ms
6,820 KB
testcase_17 AC 3 ms
6,816 KB
testcase_18 AC 2 ms
6,820 KB
testcase_19 AC 4 ms
6,820 KB
testcase_20 AC 3 ms
6,816 KB
testcase_21 AC 2 ms
6,820 KB
testcase_22 AC 3 ms
6,820 KB
testcase_23 AC 2 ms
6,816 KB
testcase_24 AC 216 ms
6,820 KB
testcase_25 AC 268 ms
6,820 KB
testcase_26 AC 144 ms
6,816 KB
testcase_27 AC 267 ms
6,816 KB
testcase_28 AC 156 ms
6,816 KB
testcase_29 AC 317 ms
6,816 KB
testcase_30 AC 149 ms
6,820 KB
testcase_31 AC 93 ms
6,820 KB
testcase_32 AC 350 ms
6,816 KB
testcase_33 AC 167 ms
6,816 KB
testcase_34 AC 237 ms
6,820 KB
testcase_35 AC 358 ms
6,816 KB
testcase_36 AC 40 ms
6,820 KB
testcase_37 AC 106 ms
6,816 KB
testcase_38 AC 312 ms
6,816 KB
testcase_39 AC 227 ms
6,816 KB
testcase_40 AC 278 ms
6,820 KB
testcase_41 AC 24 ms
6,816 KB
testcase_42 AC 325 ms
6,816 KB
testcase_43 AC 318 ms
6,816 KB
testcase_44 AC 353 ms
6,820 KB
testcase_45 AC 377 ms
6,820 KB
testcase_46 AC 370 ms
6,820 KB
testcase_47 AC 381 ms
6,816 KB
testcase_48 AC 379 ms
6,820 KB
testcase_49 AC 345 ms
6,820 KB
testcase_50 AC 375 ms
6,820 KB
testcase_51 AC 370 ms
6,816 KB
testcase_52 AC 387 ms
6,816 KB
testcase_53 AC 398 ms
6,816 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
#define REP(i,a,n) for(int i=(a); i<(int)(n); i++)
#define rep(i,n) REP(i,0,n)
#define FOR(it,c) for(__typeof((c).begin()) it=(c).begin(); it!=(c).end(); ++it)
#define ALLOF(c) (c).begin(), (c).end()
typedef long long ll;
typedef unsigned long long ull;

int solve(const vector<int>& v, int x){
  if(x <= 0) return 0;

  int lb = -1, ub = v.size();
  while(ub-lb>1){
    int m = (lb+ub)/2;
    if(v[m] <= x) lb = m;
    else ub = m;
  }
  return ub;
}


int main(){
  int N, D;
  cin >> N >> D;
  vector<int> v, w;
  rep(i,N){
    int a;
    cin >> a;
    v.push_back(a);
    w.push_back(a);
  }
  sort(ALLOF(w));

  rep(i,N){
    int a = v[i];
    cout << solve(w, a-D) << endl;
  }

  return 0;
}

0