結果

問題 No.1268 Fruit Rush 2
ユーザー tonyu0tonyu0
提出日時 2020-10-24 08:44:25
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 370 ms / 2,000 ms
コード長 672 bytes
コンパイル時間 1,448 ms
コンパイル使用メモリ 130,440 KB
実行使用メモリ 29,188 KB
最終ジャッジ日時 2024-07-21 14:57:04
合計ジャッジ時間 6,328 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,812 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 2 ms
6,944 KB
testcase_04 AC 2 ms
6,940 KB
testcase_05 AC 2 ms
6,940 KB
testcase_06 AC 2 ms
6,944 KB
testcase_07 AC 2 ms
6,944 KB
testcase_08 AC 2 ms
6,944 KB
testcase_09 AC 2 ms
6,944 KB
testcase_10 AC 2 ms
6,944 KB
testcase_11 AC 2 ms
6,940 KB
testcase_12 AC 2 ms
6,940 KB
testcase_13 AC 2 ms
6,944 KB
testcase_14 AC 2 ms
6,940 KB
testcase_15 AC 2 ms
6,940 KB
testcase_16 AC 88 ms
13,876 KB
testcase_17 AC 80 ms
13,820 KB
testcase_18 AC 84 ms
13,756 KB
testcase_19 AC 83 ms
13,744 KB
testcase_20 AC 82 ms
13,728 KB
testcase_21 AC 79 ms
13,712 KB
testcase_22 AC 88 ms
13,860 KB
testcase_23 AC 90 ms
13,868 KB
testcase_24 AC 83 ms
13,740 KB
testcase_25 AC 81 ms
13,716 KB
testcase_26 AC 366 ms
29,060 KB
testcase_27 AC 365 ms
29,060 KB
testcase_28 AC 361 ms
29,060 KB
testcase_29 AC 370 ms
29,056 KB
testcase_30 AC 335 ms
29,188 KB
testcase_31 AC 111 ms
14,228 KB
testcase_32 AC 109 ms
14,352 KB
testcase_33 AC 168 ms
14,328 KB
testcase_34 AC 119 ms
24,040 KB
testcase_35 AC 193 ms
24,072 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <algorithm>
#include <cmath>
#include <functional>
#include <iomanip>
#include <iostream>
#include <map>
#include <numeric>
#include <queue>
#include <set>
#include <tuple>
#include <vector>
using namespace std;
using ll = int64_t;
#define rep(i, j, n) for (int i = j; i < (n); ++i)
#define rrep(i, j, n) for (int i = (n)-1; j <= i; --i)

int main() {
  int n;
  cin >> n;
  vector<ll> a(n);
  rep(i, 0, n) cin >> a[i];
  sort(a.begin(), a.end());
  // 重複は一個前
  unordered_map<ll, ll> dp;
  rep(i, 0, n) {
    ++dp[a[i]];
    dp[a[i] + 1] += dp[a[i] - 1];
  }
  ll ans = 0;
  for (auto itr : dp) ans += itr.second;
  cout << ans << endl;
  return 0;
}
0