結果
問題 | No.33 アメーバがたくさん |
ユーザー | kyuridenamida |
提出日時 | 2016-02-11 10:13:47 |
言語 | C++11 (gcc 11.4.0) |
結果 |
AC
|
実行時間 | 2 ms / 5,000 ms |
コード長 | 998 bytes |
コンパイル時間 | 1,630 ms |
コンパイル使用メモリ | 175,196 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-09-24 10:31:59 |
合計ジャッジ時間 | 2,013 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,816 KB |
testcase_01 | AC | 2 ms
6,940 KB |
testcase_02 | AC | 1 ms
6,940 KB |
testcase_03 | AC | 2 ms
6,944 KB |
testcase_04 | AC | 1 ms
6,940 KB |
testcase_05 | AC | 1 ms
6,940 KB |
testcase_06 | AC | 1 ms
6,944 KB |
testcase_07 | AC | 1 ms
6,940 KB |
testcase_08 | AC | 1 ms
6,944 KB |
testcase_09 | AC | 2 ms
6,944 KB |
testcase_10 | AC | 2 ms
6,944 KB |
ソースコード
#include <bits/stdc++.h> using namespace std; #define rep(i,n) for(int (i) = 0 ; (i) < (int)(n) ; (i)++) #define REP(i,a,b) for(int (i) = a ; (int)(i) <= (int)(b) ; (i)++) #define all(n) (n).begin(),(n).end() typedef vector<int> Vi; typedef vector<Vi> VVi; typedef pair<long long,long long> Pii; typedef vector<Pii> VPii; int main(){ map<long long,vector<long long>> group; int N,D,T; cin >> N >> D >> T; rep(i,N){ long long X; cin >> X; X += 1000000000ll; group[X%D].push_back((X-X%D)/D); } long long allTot = 0; for( auto g : group ){ vector<Pii> seg; for( auto i : g.second ){ seg.push_back({i-T,i+T+1}); } sort(all(seg)); Pii nowSeg = seg[0]; long long tot = 0; for(int i = 1 ; i < seg.size() ; i++){ if( nowSeg.second < seg[i].first ){ tot += nowSeg.second - nowSeg.first; nowSeg = seg[i]; }else{ nowSeg.second = max(nowSeg.second,seg[i].second); } } tot += nowSeg.second - nowSeg.first; allTot += tot; } cout << allTot << endl; }