結果
問題 | No.33 アメーバがたくさん |
ユーザー | ninoinui |
提出日時 | 2020-07-24 03:36:18 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 470 bytes |
コンパイル時間 | 2,404 ms |
コンパイル使用メモリ | 212,432 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-06-24 04:56:39 |
合計ジャッジ時間 | 3,014 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,376 KB |
testcase_02 | AC | 2 ms
5,376 KB |
testcase_03 | WA | - |
testcase_04 | AC | 2 ms
5,376 KB |
testcase_05 | WA | - |
testcase_06 | AC | 2 ms
5,376 KB |
testcase_07 | AC | 2 ms
5,376 KB |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | AC | 2 ms
5,376 KB |
ソースコード
#include <bits/stdc++.h> using namespace std; int main() { int N, D, T; cin >> N >> D >> T; map<int, vector<int>> MA; for (int x; cin >> x;) MA[(x % D + D) % D].push_back(x); int ans = 0; for (auto [a, X] : MA) { sort(X.begin(), X.end()); int pre = INT_MIN; for (auto x : X) { int l = x - D * T; int r = x + D * T; if (l < pre) ans -= (pre - l) / D + 1; ans += T * 2 + 1; pre = r; } } cout << ans << "\n"; }