結果

問題 No.1268 Fruit Rush 2
ユーザー SSRSSSRS
提出日時 2020-10-23 22:33:00
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 254 ms / 2,000 ms
コード長 792 bytes
コンパイル時間 2,335 ms
コンパイル使用メモリ 183,580 KB
実行使用メモリ 25,248 KB
最終ジャッジ日時 2024-07-21 11:21:29
合計ジャッジ時間 7,136 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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 154 ms
14,720 KB
testcase_17 AC 132 ms
13,524 KB
testcase_18 AC 139 ms
13,924 KB
testcase_19 AC 137 ms
13,824 KB
testcase_20 AC 135 ms
13,920 KB
testcase_21 AC 133 ms
13,616 KB
testcase_22 AC 154 ms
14,924 KB
testcase_23 AC 156 ms
14,800 KB
testcase_24 AC 136 ms
13,896 KB
testcase_25 AC 133 ms
13,696 KB
testcase_26 AC 239 ms
25,064 KB
testcase_27 AC 238 ms
25,132 KB
testcase_28 AC 239 ms
25,248 KB
testcase_29 AC 239 ms
25,104 KB
testcase_30 AC 239 ms
25,116 KB
testcase_31 AC 194 ms
15,884 KB
testcase_32 AC 194 ms
15,892 KB
testcase_33 AC 254 ms
15,888 KB
testcase_34 AC 178 ms
16,388 KB
testcase_35 AC 250 ms
16,392 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
int main(){
  int N;
  cin >> N;
  vector<long long> A(N);
  for (int i = 0; i < N; i++){
    cin >> A[i];
  }
  sort(A.rbegin(), A.rend());
  set<long long> st;
  for (int i = 0; i < N; i++){
    st.insert(A[i]);
  }
  vector<vector<vector<long long>>> P(2);
  for (int i = 0; i < N; i++){
    int r = A[i] % 2;
    if (st.count(A[i] + 2)){
      P[r].back().push_back(A[i]);
    } else {
      P[r].push_back(vector<long long>(1, A[i]));
    }
  }
  long long ans = N;
  for (int i = 0; i < 2; i++){
    int cnt = P[i].size();
    for (int j = 0; j < cnt; j++){
      int sz = P[i][j].size();
      for (int k = 0; k < sz; k++){
        if (st.count(P[i][j][k] - 1)){
          ans += k + 1;
        }
      }
    }
  }
  cout << ans << endl;
}
0