結果

問題 No.1268 Fruit Rush 2
ユーザー butsurizukibutsurizuki
提出日時 2020-10-24 00:39:38
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 908 ms / 2,000 ms
コード長 485 bytes
コンパイル時間 2,004 ms
コンパイル使用メモリ 185,008 KB
実行使用メモリ 86,144 KB
最終ジャッジ日時 2024-07-21 14:28:17
合計ジャッジ時間 15,580 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 1 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 512 ms
37,376 KB
testcase_17 AC 450 ms
35,584 KB
testcase_18 AC 473 ms
36,224 KB
testcase_19 AC 461 ms
36,224 KB
testcase_20 AC 465 ms
36,096 KB
testcase_21 AC 445 ms
35,712 KB
testcase_22 AC 519 ms
37,376 KB
testcase_23 AC 503 ms
37,632 KB
testcase_24 AC 464 ms
36,224 KB
testcase_25 AC 448 ms
35,840 KB
testcase_26 AC 906 ms
86,016 KB
testcase_27 AC 896 ms
86,144 KB
testcase_28 AC 908 ms
86,144 KB
testcase_29 AC 891 ms
86,016 KB
testcase_30 AC 895 ms
86,016 KB
testcase_31 AC 654 ms
39,168 KB
testcase_32 AC 657 ms
39,168 KB
testcase_33 AC 463 ms
39,168 KB
testcase_34 AC 565 ms
73,472 KB
testcase_35 AC 632 ms
73,600 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>

using namespace std;


int main(){
  int n;
  cin >> n;
  vector<long long> vc(n);
  set<long long> st;
  map<long long,long long> dp;
  map<long long,long long> ex;
  for(int i=0;i<n;i++){
    cin >> vc[i];
    st.insert(vc[i]);
    st.insert(vc[i]+1);
    dp[vc[i]]=1;
    ex[vc[i]]=1;
  }
  sort(vc.begin(),vc.end());
  long long res=0;
  for(auto k:st){
    if(k>=3){
      if(ex[k-1]==1){dp[k]+=dp[k-2];}
    }
    res+=dp[k];
  }
  cout << res << '\n';
}
0