結果

問題 No.1110 好きな歌
ユーザー kappybarkappybar
提出日時 2020-07-10 21:35:57
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 377 ms / 5,000 ms
コード長 806 bytes
コンパイル時間 2,047 ms
コンパイル使用メモリ 175,484 KB
実行使用メモリ 8,704 KB
最終ジャッジ日時 2024-10-11 08:10:39
合計ジャッジ時間 12,396 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 1 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 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 3 ms
5,248 KB
testcase_22 AC 3 ms
5,248 KB
testcase_23 AC 2 ms
5,248 KB
testcase_24 AC 217 ms
6,528 KB
testcase_25 AC 266 ms
7,168 KB
testcase_26 AC 137 ms
5,248 KB
testcase_27 AC 263 ms
7,040 KB
testcase_28 AC 154 ms
5,504 KB
testcase_29 AC 314 ms
7,680 KB
testcase_30 AC 152 ms
5,504 KB
testcase_31 AC 95 ms
5,248 KB
testcase_32 AC 345 ms
8,192 KB
testcase_33 AC 175 ms
5,888 KB
testcase_34 AC 236 ms
6,656 KB
testcase_35 AC 374 ms
8,704 KB
testcase_36 AC 42 ms
5,248 KB
testcase_37 AC 102 ms
5,248 KB
testcase_38 AC 303 ms
7,680 KB
testcase_39 AC 228 ms
6,528 KB
testcase_40 AC 296 ms
7,552 KB
testcase_41 AC 24 ms
5,248 KB
testcase_42 AC 338 ms
8,192 KB
testcase_43 AC 311 ms
7,680 KB
testcase_44 AC 365 ms
8,704 KB
testcase_45 AC 369 ms
8,704 KB
testcase_46 AC 371 ms
8,704 KB
testcase_47 AC 370 ms
8,704 KB
testcase_48 AC 368 ms
8,576 KB
testcase_49 AC 369 ms
8,704 KB
testcase_50 AC 368 ms
8,704 KB
testcase_51 AC 369 ms
8,704 KB
testcase_52 AC 377 ms
8,704 KB
testcase_53 AC 376 ms
8,704 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#define rep(i,n) for(int i=0;i<(int)(n);i++)
using namespace std;
using ll = long long ;
using P = pair<int,int> ;
using pll = pair<long long,long long>;
constexpr int INF = 1e9;
constexpr long long LINF = 1e17;
constexpr int MOD = 1000000007;
constexpr double PI = 3.14159265358979323846;

int main(){
    int n;
    ll d;
    cin >> n >> d;
    vector<ll> a(n);
    rep(i,n) cin >> a[i];
    vector<pll> p(n);
    rep(i,n) p[i] = pll(a[i],i);
    sort(p.begin(),p.end());
    vector<int> ans(n);
    rep(i,n){
        ll k = p[i].first;
        int l = -1,r = n;
        while(r - l > 1){
            int m = (l+r)/2;
            if(k-p[m].first>=d) l = m;
            else r = m;
        }
        ans[p[i].second] = r;
    }
    rep(i,n) cout << ans[i] << endl;
    return 0;
}
0