結果

問題 No.1110 好きな歌
ユーザー rgkb0303rgkb0303
提出日時 2020-07-20 09:22:54
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 347 ms / 5,000 ms
コード長 586 bytes
コンパイル時間 1,517 ms
コンパイル使用メモリ 174,928 KB
実行使用メモリ 5,672 KB
最終ジャッジ日時 2024-06-02 08:21:23
合計ジャッジ時間 12,666 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 1 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 1 ms
5,376 KB
testcase_06 AC 1 ms
5,376 KB
testcase_07 AC 1 ms
5,376 KB
testcase_08 AC 2 ms
5,376 KB
testcase_09 AC 2 ms
5,376 KB
testcase_10 AC 1 ms
5,376 KB
testcase_11 AC 2 ms
5,376 KB
testcase_12 AC 2 ms
5,376 KB
testcase_13 AC 1 ms
5,376 KB
testcase_14 AC 3 ms
5,376 KB
testcase_15 AC 2 ms
5,376 KB
testcase_16 AC 3 ms
5,376 KB
testcase_17 AC 3 ms
5,376 KB
testcase_18 AC 1 ms
5,376 KB
testcase_19 AC 3 ms
5,376 KB
testcase_20 AC 3 ms
5,376 KB
testcase_21 AC 3 ms
5,376 KB
testcase_22 AC 2 ms
5,376 KB
testcase_23 AC 2 ms
5,376 KB
testcase_24 AC 198 ms
5,376 KB
testcase_25 AC 240 ms
5,452 KB
testcase_26 AC 128 ms
5,376 KB
testcase_27 AC 241 ms
5,376 KB
testcase_28 AC 143 ms
5,376 KB
testcase_29 AC 288 ms
5,452 KB
testcase_30 AC 140 ms
5,376 KB
testcase_31 AC 88 ms
5,376 KB
testcase_32 AC 313 ms
5,584 KB
testcase_33 AC 165 ms
5,376 KB
testcase_34 AC 221 ms
5,376 KB
testcase_35 AC 331 ms
5,580 KB
testcase_36 AC 38 ms
5,376 KB
testcase_37 AC 100 ms
5,376 KB
testcase_38 AC 271 ms
5,452 KB
testcase_39 AC 208 ms
5,376 KB
testcase_40 AC 265 ms
5,452 KB
testcase_41 AC 21 ms
5,376 KB
testcase_42 AC 300 ms
5,452 KB
testcase_43 AC 283 ms
5,452 KB
testcase_44 AC 347 ms
5,672 KB
testcase_45 AC 345 ms
5,584 KB
testcase_46 AC 330 ms
5,584 KB
testcase_47 AC 336 ms
5,576 KB
testcase_48 AC 339 ms
5,580 KB
testcase_49 AC 332 ms
5,580 KB
testcase_50 AC 338 ms
5,584 KB
testcase_51 AC 339 ms
5,576 KB
testcase_52 AC 342 ms
5,576 KB
testcase_53 AC 340 ms
5,576 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

int main() {
  int n, d;
  cin >> n >> d;
  
  vector<pair<int, int>> v;
  
  for (int i = 0; i < n; i++) {
    int a;
    cin >> a;
    v.push_back(make_pair(a, i));
  }
  sort(v.begin(), v.end());
  
  vector<int> answer(n, 0);
  
  int count = 0;
  int num = 0;
  
  for (int i = 0; i < n; i++) {
    while (v.at(i).first - d >= v.at(num).first) {
      count++;
      num++;
    }
    if (v.at(i).first - d < v.at(num).first) {
      answer.at(v.at(i).second) = count;
    }
  }
  
  for (int x : answer) {
    cout << x << endl;
  }
}
0