結果

問題 No.1268 Fruit Rush 2
ユーザー hanyuhanyu
提出日時 2020-10-17 16:46:03
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 249 ms / 2,000 ms
コード長 491 bytes
コンパイル時間 2,013 ms
コンパイル使用メモリ 211,660 KB
実行使用メモリ 25,344 KB
最終ジャッジ日時 2024-07-21 02:52:38
合計ジャッジ時間 8,312 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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 AC 2 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 AC 2 ms
5,376 KB
testcase_09 AC 2 ms
5,376 KB
testcase_10 AC 2 ms
5,376 KB
testcase_11 AC 2 ms
5,376 KB
testcase_12 AC 2 ms
5,376 KB
testcase_13 AC 2 ms
5,376 KB
testcase_14 AC 2 ms
5,376 KB
testcase_15 AC 2 ms
5,376 KB
testcase_16 AC 172 ms
20,224 KB
testcase_17 AC 174 ms
17,792 KB
testcase_18 AC 168 ms
18,688 KB
testcase_19 AC 158 ms
18,432 KB
testcase_20 AC 144 ms
18,176 KB
testcase_21 AC 143 ms
17,920 KB
testcase_22 AC 169 ms
20,096 KB
testcase_23 AC 177 ms
20,096 KB
testcase_24 AC 151 ms
18,432 KB
testcase_25 AC 146 ms
18,176 KB
testcase_26 AC 229 ms
25,216 KB
testcase_27 AC 227 ms
25,344 KB
testcase_28 AC 219 ms
25,344 KB
testcase_29 AC 214 ms
25,344 KB
testcase_30 AC 223 ms
25,216 KB
testcase_31 AC 241 ms
25,344 KB
testcase_32 AC 249 ms
25,216 KB
testcase_33 AC 236 ms
25,216 KB
testcase_34 AC 227 ms
25,216 KB
testcase_35 AC 231 ms
25,344 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

using ll = long long;

int main() {
  cin.tie(0);
  ios::sync_with_stdio(false);
  
  int n;
  cin >> n;
  
  set<ll> s;
  for (int i = 0; i < n; i++) {
    ll a;
    cin >> a;
    s.insert(a);
  }
  
  map<ll, ll> mp;
  ll ans = n;
  for (auto &f : s) {
    ll count = 0;
    if (s.find(f - 1) != s.end()) count++;
    if (mp.find(f - 1) != mp.end()) count += mp[f - 1];
    mp[f + 1] = count;
    ans += count;
  }
  
  cout << ans << '\n';
}
0