結果

問題 No.33 アメーバがたくさん
ユーザー togatogatogatoga
提出日時 2015-04-21 23:20:31
言語 C++11
(gcc 11.4.0)
結果
WA  
実行時間 -
コード長 1,495 bytes
コンパイル時間 780 ms
コンパイル使用メモリ 94,388 KB
実行使用メモリ 4,348 KB
最終ジャッジ日時 2023-10-24 17:46:26
合計ジャッジ時間 1,388 ms
ジャッジサーバーID
(参考情報)
judge15 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
4,348 KB
testcase_01 AC 1 ms
4,348 KB
testcase_02 AC 2 ms
4,348 KB
testcase_03 AC 1 ms
4,348 KB
testcase_04 AC 2 ms
4,348 KB
testcase_05 AC 2 ms
4,348 KB
testcase_06 WA -
testcase_07 WA -
testcase_08 AC 1 ms
4,348 KB
testcase_09 WA -
testcase_10 AC 1 ms
4,348 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#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;
}
0