結果
問題 | No.33 アメーバがたくさん |
ユーザー | H3PO4 |
提出日時 | 2023-02-22 15:20:42 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 760 bytes |
コンパイル時間 | 1,088 ms |
コンパイル使用メモリ | 98,476 KB |
実行使用メモリ | 6,948 KB |
最終ジャッジ日時 | 2024-07-22 17:02:50 |
合計ジャッジ時間 | 1,691 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,816 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,940 KB |
testcase_07 | AC | 2 ms
6,944 KB |
testcase_08 | WA | - |
testcase_09 | AC | 2 ms
6,948 KB |
testcase_10 | AC | 1 ms
6,944 KB |
ソースコード
#include <iostream> #include <algorithm> #include <unordered_map> #include <vector> int main() { int N, D, T; const int INF = 1e9; std::cin >> N >> D >> T; std::unordered_map<int, std::vector<int>> line; std::vector<int> X(N); for (int i = 0; i < N; i++) { int x; std::cin >> x; x += INF; X.at(i) = x; } for (const auto &x: X) { int mod = x % D; line[mod].push_back(x / D); } int ans = 0; for (auto &[k, v]: line) { std::sort(v.begin(), v.end()); ans += 2 * T + 1; for (int i = 0; i < v.size() - 1; i++) { ans += v.at(i + 1) + T - std::max({v.at(i + 1) - T - 1, v.at(i) + T}); } } std::cout << ans << std::endl; }