結果

問題 No.1110 好きな歌
ユーザー tsushimatsushima
提出日時 2020-07-10 22:12:19
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 495 ms / 5,000 ms
コード長 749 bytes
コンパイル時間 2,488 ms
コンパイル使用メモリ 211,812 KB
実行使用メモリ 14,208 KB
最終ジャッジ日時 2024-10-11 09:30:32
合計ジャッジ時間 15,655 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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 3 ms
5,248 KB
testcase_15 AC 3 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 2 ms
5,248 KB
testcase_22 AC 3 ms
5,248 KB
testcase_23 AC 2 ms
5,248 KB
testcase_24 AC 261 ms
9,600 KB
testcase_25 AC 332 ms
11,136 KB
testcase_26 AC 157 ms
7,168 KB
testcase_27 AC 323 ms
11,008 KB
testcase_28 AC 181 ms
7,808 KB
testcase_29 AC 375 ms
12,160 KB
testcase_30 AC 172 ms
7,680 KB
testcase_31 AC 100 ms
5,888 KB
testcase_32 AC 435 ms
13,184 KB
testcase_33 AC 203 ms
8,448 KB
testcase_34 AC 281 ms
10,112 KB
testcase_35 AC 460 ms
14,208 KB
testcase_36 AC 40 ms
5,248 KB
testcase_37 AC 110 ms
6,272 KB
testcase_38 AC 372 ms
12,032 KB
testcase_39 AC 277 ms
9,728 KB
testcase_40 AC 351 ms
11,776 KB
testcase_41 AC 25 ms
5,248 KB
testcase_42 AC 426 ms
12,928 KB
testcase_43 AC 379 ms
12,160 KB
testcase_44 AC 467 ms
14,208 KB
testcase_45 AC 479 ms
14,208 KB
testcase_46 AC 482 ms
14,080 KB
testcase_47 AC 480 ms
14,080 KB
testcase_48 AC 488 ms
14,208 KB
testcase_49 AC 457 ms
14,208 KB
testcase_50 AC 495 ms
14,208 KB
testcase_51 AC 489 ms
14,080 KB
testcase_52 AC 470 ms
14,208 KB
testcase_53 AC 484 ms
14,080 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#define rep(i, a, n) for (int i = a; i < n; i++)
#define repr(i, a, n) for (int i = n - 1; i >= a; i--)
using namespace std;
using ll = long long;
using P = pair<int, int>;
template <typename T> void chmin(T &a, T b) { a = min(a, b); }
template <typename T> void chmax(T &a, T b) { a = max(a, b); }

int main() {
  ios::sync_with_stdio(false);
  cin.tie(0);

  int n, d;
  cin >> n >> d;
  vector<int> org(n), a(n);
  rep(i, 0, n) {
    cin >> a[i];
    org[i] = a[i];
  }
  sort(a.begin(), a.end());

  map<int, int> mp;
  rep(i, 0, n) {
    int key = a[i] - d;
    int x = 0;
    if (key > 0)
      x = upper_bound(a.begin(), a.end(), key) - a.begin();

    mp[a[i]] = x;
  }

  rep(i, 0, n) cout << mp[org[i]] << endl;
}
0