結果

問題 No.1170 Never Want to Walk
ユーザー hiro71687khiro71687k
提出日時 2023-02-27 05:10:24
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 474 ms / 2,000 ms
コード長 1,531 bytes
コンパイル時間 4,652 ms
コンパイル使用メモリ 270,220 KB
実行使用メモリ 19,072 KB
最終ジャッジ日時 2024-09-14 15:51:53
合計ジャッジ時間 12,158 ms
ジャッジサーバーID
(参考情報)
judge2 / judge6
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 3 ms
5,376 KB
testcase_02 AC 3 ms
5,376 KB
testcase_03 AC 3 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 3 ms
5,376 KB
testcase_07 AC 3 ms
5,376 KB
testcase_08 AC 3 ms
5,376 KB
testcase_09 AC 3 ms
5,376 KB
testcase_10 AC 2 ms
5,376 KB
testcase_11 AC 2 ms
5,376 KB
testcase_12 AC 5 ms
5,376 KB
testcase_13 AC 5 ms
5,376 KB
testcase_14 AC 5 ms
5,376 KB
testcase_15 AC 4 ms
5,376 KB
testcase_16 AC 5 ms
5,376 KB
testcase_17 AC 5 ms
5,376 KB
testcase_18 AC 5 ms
5,376 KB
testcase_19 AC 5 ms
5,376 KB
testcase_20 AC 5 ms
5,376 KB
testcase_21 AC 5 ms
5,376 KB
testcase_22 AC 5 ms
5,376 KB
testcase_23 AC 5 ms
5,376 KB
testcase_24 AC 5 ms
5,376 KB
testcase_25 AC 5 ms
5,376 KB
testcase_26 AC 5 ms
5,376 KB
testcase_27 AC 457 ms
19,072 KB
testcase_28 AC 449 ms
18,048 KB
testcase_29 AC 474 ms
18,688 KB
testcase_30 AC 455 ms
18,560 KB
testcase_31 AC 443 ms
18,176 KB
testcase_32 AC 423 ms
18,432 KB
testcase_33 AC 437 ms
18,048 KB
testcase_34 AC 435 ms
18,816 KB
testcase_35 AC 434 ms
18,688 KB
testcase_36 AC 422 ms
18,176 KB
testcase_37 AC 422 ms
18,176 KB
testcase_38 AC 448 ms
18,816 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#include <atcoder/all>
using namespace std;
using namespace atcoder;
using ll=long long;
using ld=long double;
ll inf=10010010010010010;
ll mod=998244353;
int main(){
    ll n,a,b;
    cin >> n >> a >> b;
    vector<ll>x(n);
    set<pair<ll,ll>>s;
    s.insert({inf,inf});
    for (ll i = 0; i < n; i++)
    {
        cin >> x[i];
        s.insert({x[i],i});
    }
    vector<ll>ans(n);
    while (1)
    {
        auto v=s.lower_bound({-1,-1});
        pair<ll,ll>p=*(v);
        s.erase(p);
        if (p.first==inf)
        {
            break;
        }
        vector<pair<ll,ll>>memo;
        memo.push_back(p);
        for (ll i = 0; i < memo.size(); i++)
        {
            v=s.lower_bound({memo[i].first+a,-1});
            pair<ll,ll>q=*(v);
            while (a<=abs(q.first-memo[i].first)&&abs(q.first-memo[i].first)<=b)
            {
                s.erase(q);
                memo.push_back(q);
                v=s.lower_bound(q);
                q=*(v);
            }
            v=s.lower_bound({memo[i].first-b,-1});
            q=*(v);
            while (a<=abs(memo[i].first-q.first)&&abs(memo[i].first-q.first)<=b)
            {
                s.erase(q);
                memo.push_back(q);
                v=s.lower_bound(q);
                q=*(v);
            }
        }
        for (ll i = 0; i < memo.size(); i++)
        {
            ans[memo[i].second]=memo.size();
        }
    }
    for (ll i = 0; i < ans.size(); i++)
    {
        cout << ans[i] << endl;
    }
    
}
0