結果
問題 | No.33 アメーバがたくさん |
ユーザー | OKCH3COOH |
提出日時 | 2019-10-25 22:00:15 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
RE
|
実行時間 | - |
コード長 | 1,794 bytes |
コンパイル時間 | 1,260 ms |
コンパイル使用メモリ | 123,452 KB |
実行使用メモリ | 6,948 KB |
最終ジャッジ日時 | 2024-09-13 03:35:20 |
合計ジャッジ時間 | 2,428 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,812 KB |
testcase_01 | AC | 2 ms
6,944 KB |
testcase_02 | AC | 2 ms
6,944 KB |
testcase_03 | AC | 2 ms
6,940 KB |
testcase_04 | AC | 2 ms
6,940 KB |
testcase_05 | AC | 2 ms
6,944 KB |
testcase_06 | AC | 2 ms
6,944 KB |
testcase_07 | RE | - |
testcase_08 | RE | - |
testcase_09 | RE | - |
testcase_10 | RE | - |
ソースコード
#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; llongVV amebaGrp(D); FOR(i, N) { llong x; cin >> x; amebaGrp[x % D].push_back(x); } llong ans = N; for(llongV grp : amebaGrp) { 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; }