結果
問題 | No.33 アメーバがたくさん |
ユーザー | togatoga |
提出日時 | 2015-04-21 23:20:31 |
言語 | C++11 (gcc 11.4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,495 bytes |
コンパイル時間 | 912 ms |
コンパイル使用メモリ | 95,644 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-09-24 10:08:09 |
合計ジャッジ時間 | 1,747 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,812 KB |
testcase_01 | AC | 2 ms
6,940 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,940 KB |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | AC | 2 ms
6,940 KB |
testcase_09 | WA | - |
testcase_10 | AC | 2 ms
6,944 KB |
ソースコード
#include <iostream> #include <map> #include <set> #include <list> #include <cmath> #include <queue> #include <stack> #include <cstdio> #include <string> #include <vector> #include <complex> #include <cstdlib> #include <cstring> #include <numeric> #include <sstream> #include <algorithm> #include <functional> #include <limits.h> #include <bitset> #include <tuple> #include <unordered_map> #define mp make_pair #define mt make_tuple #define pb push_back #define rep(i, n) for (int i = 0; i < (n); i++) using namespace std; typedef long long ll; typedef unsigned long long ull; typedef pair<int, int> pii; const int INF = 1 << 29; const double EPS = 1e-9; const int dx[] = {1, 0, -1, 0}, dy[] = {0, -1, 0, 1}; ll N, D, T; vector<ll> pos; int main() { cin >> N >> D >> T; pos.resize(N); ll res = 0; for (int i = 0; i < N; i++) { cin >> pos[i]; } sort(pos.begin(), pos.end()); for (int i = 0; i < N; i++) { ll p = pos[i]; bool ok = false; for (int j = i + 1; j < N; j++) { ll q = pos[j]; ll d = q - p; if (d % D == 0) { res += d / D; ok = true; break; } } if (!ok) { res += (T + 1); } } reverse(pos.begin(), pos.end()); for (int i = 0; i < N; i++) { bool ok = false; for (int j = i + 1; j < N; j++) { ll d = abs(pos[j] - pos[i]); if (d % D == 0){ ok = true; break; } } if (!ok){ res += T; } } cout << res << endl; return 0; }