結果
問題 | No.33 アメーバがたくさん |
ユーザー | ttkkggww |
提出日時 | 2022-03-22 17:32:36 |
言語 | C++17 (gcc 13.3.0 + boost 1.87.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 982 bytes |
コンパイル時間 | 3,929 ms |
コンパイル使用メモリ | 265,484 KB |
最終ジャッジ日時 | 2025-01-28 10:59:02 |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 9 WA * 2 |
ソースコード
#include<bits/stdc++.h> using namespace std; #include<atcoder/all> using namespace atcoder; using ll = long long; ll n,d,t; vector<ll> x; using P = pair<ll,ll>; void solve(){ map<ll,vector<P>> mp; sort(x.begin(),x.end()); for(int i = 0;i<n;i++){ mp[x[i]%d].push_back(P(x[i],x[i]+1)); } vector<vector<P>> vvp; for(auto &i:mp){ vvp.push_back(i.second); } for(auto &i:vvp){ for(auto &[l,r]:i){ l -= d*t; r += d*t; } } for(auto &i:vvp){ vector<P> add; for(auto &j:i){ if(add.empty()){ add.push_back(j); }else{ //cout<<add.back().second<<' '<<j.first<<endl; if(add.back().second >= j.first){ add.back().second = j.second; }else{ add.push_back(j); } } } i = add; } ll ans = 0; for(auto &i:vvp){ for(auto &[l,r]:i){ ans += (r-l+d-1)/d; } } cout<<ans<<endl; } signed main(){ cin.tie(nullptr); ios::sync_with_stdio(false); cin >> n >> d >> t; x = vector<ll>(n); for(auto &i:x)cin >> i; solve(); }