結果

問題 No.33 アメーバがたくさん
ユーザー momoyuumomoyuu
提出日時 2024-07-28 01:18:10
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 908 bytes
コンパイル時間 1,883 ms
コンパイル使用メモリ 116,960 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-07-28 01:18:13
合計ジャッジ時間 2,316 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,944 KB
testcase_02 AC 1 ms
6,944 KB
testcase_03 AC 2 ms
6,944 KB
testcase_04 AC 2 ms
6,944 KB
testcase_05 AC 2 ms
6,944 KB
testcase_06 AC 1 ms
6,944 KB
testcase_07 AC 2 ms
6,940 KB
testcase_08 AC 2 ms
6,940 KB
testcase_09 AC 2 ms
6,940 KB
testcase_10 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<iostream>
#include<vector>
#include<algorithm>

using namespace std;
using ll = long long;

#include<map>
int main(){
    cin.tie(nullptr);
    ios::sync_with_stdio(false);

    ll n,d,t;
    cin>>n>>d>>t;
    ll ans = 0;
    map<ll,vector<ll>> memo;
    for(int i = 0;i<n;i++){
        ll x;
        cin>>x;
        ll now = x % d;
        if(now<0) now += d;
        memo[now].push_back(x);
    }
    for(auto&itr:memo){
        auto now = itr.second;
        sort(now.begin(),now.end());
        ll prev = -1e18;
        for(int i = 0;i<now.size();i++){
            ll le = now[i] - d * t;
            ll ri = now[i] + d * t;
            if(prev<le){
                ans += 2 * t + 1;
                prev = ri;
                continue;
            }
            le = prev;
            ll def = ri - le;
            ans += def / d;
            prev = ri;
        }
    }
    cout<<ans<<endl;
}

0