結果
問題 | No.33 アメーバがたくさん |
ユーザー | OKCH3COOH |
提出日時 | 2019-10-25 22:13:22 |
言語 | C++17(clang) (17.0.6 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 2 ms / 5,000 ms |
コード長 | 1,890 bytes |
コンパイル時間 | 1,460 ms |
コンパイル使用メモリ | 147,280 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-05-07 19:52:01 |
合計ジャッジ時間 | 2,258 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,376 KB |
testcase_02 | AC | 1 ms
5,376 KB |
testcase_03 | AC | 2 ms
5,376 KB |
testcase_04 | AC | 2 ms
5,376 KB |
testcase_05 | AC | 2 ms
5,376 KB |
testcase_06 | AC | 1 ms
5,376 KB |
testcase_07 | AC | 2 ms
5,376 KB |
testcase_08 | AC | 1 ms
5,376 KB |
testcase_09 | AC | 1 ms
5,376 KB |
testcase_10 | AC | 2 ms
5,376 KB |
ソースコード
#include <map> #include <set> #include <vector> #include <algorithm> #include <iostream> #include <bitset> #include <cassert> #include <queue> #include <random> #include <stack> #include <iomanip> using namespace std; template<class T> inline bool chmax(T& a, T b) { if (a < b) { a = b; return true; } return false; } template<class T> inline bool chmin(T& a, T b) { if (a > b) { a = b; return true; } return false; } using Int = unsigned int; using llong = long long; using Llong = unsigned long long; using ldouble = long double; using intV = vector<int>; using llongV = vector<long long>; using llongVV = vector<vector<long long>>; using Graph = vector<vector<long long>>; using costGraph = vector<vector<pair<long long, long long>>>; struct Edge { long long from; long long to; long long cost; }; template<typename T> using asc = less<T>(); template<typename T> using desc = greater<T>(); const llong MOD = 1e9 + 7; const llong INF = 1e17; #define FOR(i, n) for (llong i = 0; i < n; i++) #define FORS(i, a, b) for (llong i = a; i < b; i++) #define FORR(i, n) for (llong i = n; i > 0; i++) #define sup(vec, a) upper_bound(vec.begin(), vec.end(), a) - vec.begin() #define inf(vec, a) lower_bound(vec.begin(), vec.end(), a) - vec.begin() int main(void) { cin.tie(0); ios::sync_with_stdio(false); llong N, D, T; cin >> N >> D >> T; map<llong, llongV> amebaGrp; FOR(i, N) { llong x; cin >> x; llong mod = x % D; if(mod < 0) mod += D; amebaGrp[mod].push_back(x); } llong ans = N; for(auto iter : amebaGrp) { llongV grp = iter.second; if(grp.size() == 0) continue; ans += 2 * T; sort(grp.begin(), grp.end()); FORS(i, 1, grp.size()) { ans += min(2 * T, (grp[i] - grp[i - 1]) / D - 1); } } cout << ans << endl; return 0; }