結果

問題 No.1110 好きな歌
ユーザー motmot
提出日時 2020-07-10 21:57:46
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 654 ms / 5,000 ms
コード長 830 bytes
コンパイル時間 885 ms
コンパイル使用メモリ 93,856 KB
実行使用メモリ 14,208 KB
最終ジャッジ日時 2024-10-11 09:08:12
合計ジャッジ時間 16,881 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 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 1 ms
5,248 KB
testcase_06 AC 1 ms
5,248 KB
testcase_07 AC 1 ms
5,248 KB
testcase_08 AC 1 ms
5,248 KB
testcase_09 AC 2 ms
5,248 KB
testcase_10 AC 2 ms
5,248 KB
testcase_11 AC 1 ms
5,248 KB
testcase_12 AC 1 ms
5,248 KB
testcase_13 AC 1 ms
5,248 KB
testcase_14 AC 3 ms
5,248 KB
testcase_15 AC 2 ms
5,248 KB
testcase_16 AC 3 ms
5,248 KB
testcase_17 AC 4 ms
5,248 KB
testcase_18 AC 1 ms
5,248 KB
testcase_19 AC 3 ms
5,248 KB
testcase_20 AC 3 ms
5,248 KB
testcase_21 AC 2 ms
5,248 KB
testcase_22 AC 3 ms
5,248 KB
testcase_23 AC 2 ms
5,248 KB
testcase_24 AC 332 ms
9,472 KB
testcase_25 AC 419 ms
11,264 KB
testcase_26 AC 201 ms
7,296 KB
testcase_27 AC 422 ms
11,008 KB
testcase_28 AC 231 ms
7,552 KB
testcase_29 AC 509 ms
12,032 KB
testcase_30 AC 216 ms
7,680 KB
testcase_31 AC 128 ms
6,092 KB
testcase_32 AC 568 ms
13,184 KB
testcase_33 AC 259 ms
8,448 KB
testcase_34 AC 377 ms
10,112 KB
testcase_35 AC 610 ms
14,080 KB
testcase_36 AC 53 ms
5,248 KB
testcase_37 AC 147 ms
6,324 KB
testcase_38 AC 504 ms
11,904 KB
testcase_39 AC 352 ms
9,728 KB
testcase_40 AC 481 ms
11,776 KB
testcase_41 AC 29 ms
5,248 KB
testcase_42 AC 565 ms
12,928 KB
testcase_43 AC 507 ms
12,160 KB
testcase_44 AC 632 ms
14,080 KB
testcase_45 AC 636 ms
14,080 KB
testcase_46 AC 639 ms
14,080 KB
testcase_47 AC 654 ms
14,080 KB
testcase_48 AC 633 ms
14,080 KB
testcase_49 AC 601 ms
14,080 KB
testcase_50 AC 627 ms
14,208 KB
testcase_51 AC 614 ms
14,080 KB
testcase_52 AC 630 ms
14,208 KB
testcase_53 AC 653 ms
14,208 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<iostream>
#include<iomanip>
#include<cmath>
#include<string>
#include<vector>
#include<list>
#include<algorithm>
#include<map>
#include<set>
#include<queue>
#include<stack>
using namespace std;
typedef long long ll;
#define fi first
#define se second
#define mp make_pair
#define rep(i, n) for(int i=0;i<n;++i)
#define rrep(i, n) for(int i=n;i>=0;--i)
const int inf=1e9+7;
const ll mod=1e9+7;
const ll big=1e18;
const double PI=2*asin(1);

int main() {
  int N, D;
  cin>>N>>D;
  vector<int> arr(N);
  int A[N];
  for(int i=0;i<N;++i){
    cin>>A[i];
    arr[i] = A[i];
  }
  sort(arr.begin(), arr.end());
  map<int, int> amap;
  int index;
  for(int i=0;i<N;++i){
    index = upper_bound(arr.begin(), arr.end(), A[i]-D)-arr.begin();
    amap[A[i]] = index;
  }
  for(int i=0;i<N;++i){
    cout<<amap[A[i]]<<endl;
  }
}

0