結果

問題 No.1110 好きな歌
ユーザー CELICACELICA
提出日時 2020-07-17 19:41:28
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 686 ms / 5,000 ms
コード長 1,423 bytes
コンパイル時間 1,736 ms
コンパイル使用メモリ 175,824 KB
実行使用メモリ 42,496 KB
最終ジャッジ日時 2024-05-07 02:36:06
合計ジャッジ時間 18,554 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 1 ms
6,940 KB
testcase_03 AC 2 ms
6,940 KB
testcase_04 AC 2 ms
6,940 KB
testcase_05 AC 2 ms
6,944 KB
testcase_06 AC 2 ms
6,944 KB
testcase_07 AC 1 ms
6,940 KB
testcase_08 AC 2 ms
6,940 KB
testcase_09 AC 2 ms
6,944 KB
testcase_10 AC 2 ms
6,944 KB
testcase_11 AC 2 ms
6,940 KB
testcase_12 AC 2 ms
6,940 KB
testcase_13 AC 2 ms
6,940 KB
testcase_14 AC 3 ms
6,940 KB
testcase_15 AC 2 ms
6,940 KB
testcase_16 AC 2 ms
6,944 KB
testcase_17 AC 3 ms
6,940 KB
testcase_18 AC 2 ms
6,944 KB
testcase_19 AC 2 ms
6,940 KB
testcase_20 AC 3 ms
6,944 KB
testcase_21 AC 2 ms
6,944 KB
testcase_22 AC 3 ms
6,940 KB
testcase_23 AC 2 ms
6,944 KB
testcase_24 AC 363 ms
26,496 KB
testcase_25 AC 417 ms
31,488 KB
testcase_26 AC 203 ms
17,792 KB
testcase_27 AC 421 ms
31,104 KB
testcase_28 AC 194 ms
19,584 KB
testcase_29 AC 537 ms
35,712 KB
testcase_30 AC 165 ms
19,584 KB
testcase_31 AC 110 ms
13,184 KB
testcase_32 AC 613 ms
39,168 KB
testcase_33 AC 185 ms
22,016 KB
testcase_34 AC 323 ms
28,288 KB
testcase_35 AC 495 ms
42,368 KB
testcase_36 AC 32 ms
7,808 KB
testcase_37 AC 137 ms
14,128 KB
testcase_38 AC 530 ms
35,072 KB
testcase_39 AC 364 ms
27,136 KB
testcase_40 AC 353 ms
34,304 KB
testcase_41 AC 23 ms
6,944 KB
testcase_42 AC 484 ms
38,528 KB
testcase_43 AC 523 ms
35,200 KB
testcase_44 AC 540 ms
42,368 KB
testcase_45 AC 649 ms
42,368 KB
testcase_46 AC 604 ms
42,368 KB
testcase_47 AC 686 ms
42,368 KB
testcase_48 AC 624 ms
42,368 KB
testcase_49 AC 436 ms
42,496 KB
testcase_50 AC 623 ms
42,496 KB
testcase_51 AC 574 ms
42,368 KB
testcase_52 AC 634 ms
42,368 KB
testcase_53 AC 680 ms
42,368 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

using namespace std;

using ll = long long;

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

    ll n, d;
    scanf("%lld%lld", &n, &d);

    if (n < 2)
    {
        printf("0\n");
        return 0;
    }

    map<ll, ll> m;
    vector<ll> a(n);
    for (int i = 0; i < n; ++i)
    {
        ll ai;
        scanf("%lld", &ai);
        a[i] = ai;
        ++m[ai];
    }

    map<ll, ll> mconv;
    for (const auto& im : m)
    {
        if (im.first <= d)
        {
            mconv[im.first] = 0;
            continue;
        }
        auto iml = m.upper_bound(im.first - d);
        if (iml != m.begin())
            mconv[im.first] = (--iml)->first;
    }

    map<ll, ll> mc;
    ll prev{ m.begin()->first };
    for (const auto& im : m)
    {
        mc[im.first] = 0;
        if (im.first == m.begin()->first)
            continue;
        else if (im.first <= d)
        {
            prev = im.first;
            continue;
        }

        mc[im.first] = mc[prev];
        auto iml = m.upper_bound(mconv[prev]);
        auto imr = m.upper_bound(mconv[im.first]);
        for (auto imt = iml;
            imt != imr;
            ++imt)
        {
            mc[im.first] += imt->second;
        }
        
        prev = im.first;
    }

    ll res;
    for (int i = 0; i < n; ++i)
    {
        res = mc[a[i]];
        printf("%lld\n", res);
    }

    return 0;
}
0