結果

問題 No.1110 好きな歌
ユーザー chocoruskchocorusk
提出日時 2020-07-10 21:30:47
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 383 ms / 5,000 ms
コード長 1,006 bytes
コンパイル時間 1,336 ms
コンパイル使用メモリ 135,412 KB
実行使用メモリ 9,600 KB
最終ジャッジ日時 2024-10-11 07:53:58
合計ジャッジ時間 12,294 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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 2 ms
5,248 KB
testcase_16 AC 3 ms
5,248 KB
testcase_17 AC 4 ms
5,248 KB
testcase_18 AC 2 ms
5,248 KB
testcase_19 AC 3 ms
5,248 KB
testcase_20 AC 4 ms
5,248 KB
testcase_21 AC 2 ms
5,248 KB
testcase_22 AC 4 ms
5,248 KB
testcase_23 AC 3 ms
5,248 KB
testcase_24 AC 222 ms
6,912 KB
testcase_25 AC 273 ms
7,680 KB
testcase_26 AC 142 ms
5,632 KB
testcase_27 AC 267 ms
7,552 KB
testcase_28 AC 154 ms
5,888 KB
testcase_29 AC 310 ms
8,312 KB
testcase_30 AC 152 ms
5,760 KB
testcase_31 AC 95 ms
5,248 KB
testcase_32 AC 347 ms
8,960 KB
testcase_33 AC 176 ms
6,272 KB
testcase_34 AC 241 ms
7,296 KB
testcase_35 AC 370 ms
9,472 KB
testcase_36 AC 42 ms
5,248 KB
testcase_37 AC 105 ms
5,248 KB
testcase_38 AC 306 ms
8,320 KB
testcase_39 AC 231 ms
7,040 KB
testcase_40 AC 295 ms
8,128 KB
testcase_41 AC 24 ms
5,248 KB
testcase_42 AC 339 ms
8,832 KB
testcase_43 AC 306 ms
8,320 KB
testcase_44 AC 382 ms
9,472 KB
testcase_45 AC 377 ms
9,472 KB
testcase_46 AC 378 ms
9,600 KB
testcase_47 AC 375 ms
9,524 KB
testcase_48 AC 376 ms
9,472 KB
testcase_49 AC 375 ms
9,472 KB
testcase_50 AC 379 ms
9,472 KB
testcase_51 AC 375 ms
9,344 KB
testcase_52 AC 375 ms
9,408 KB
testcase_53 AC 383 ms
9,500 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <cstdio>
#include <cstring>
#include <iostream>
#include <string>
#include <cmath>
#include <bitset>
#include <vector>
#include <map>
#include <set>
#include <queue>
#include <deque>
#include <algorithm>
#include <complex>
#include <unordered_map>
#include <unordered_set>
#include <random>
#include <cassert>
#include <fstream>
#include <utility>
#include <functional>
#include <time.h>
#include <stack>
#include <array>
#include <list>
#define popcount __builtin_popcount
using namespace std;
typedef long long int ll;
typedef pair<int, int> P;

int main()
{
    int n; cin>>n;
    ll d; cin>>d;
    ll a[200020];
    vector<pair<ll, int>> v(n);
    for(int i=0; i<n; i++){
        cin>>a[i];
        v[i]=make_pair(a[i], i);
    }
    sort(v.begin(), v.end());
    ll ans[200020];
    for(int i=0; i<n; i++){
        int k=lower_bound(v.begin(), v.end(), make_pair(v[i].first-d+1, -1))-v.begin();
        ans[v[i].second]=k;
    }
    for(int i=0; i<n; i++) cout<<ans[i]<<endl;
    return 0;
}
0