結果

問題 No.1268 Fruit Rush 2
ユーザー milanis48663220milanis48663220
提出日時 2020-10-23 23:32:49
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,316 bytes
コンパイル時間 857 ms
コンパイル使用メモリ 88,780 KB
実行使用メモリ 10,908 KB
最終ジャッジ日時 2023-09-28 18:48:07
合計ジャッジ時間 3,420 ms
ジャッジサーバーID
(参考情報)
judge14 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
4,380 KB
testcase_01 AC 2 ms
4,380 KB
testcase_02 AC 1 ms
4,380 KB
testcase_03 AC 2 ms
4,376 KB
testcase_04 AC 1 ms
4,380 KB
testcase_05 AC 1 ms
4,376 KB
testcase_06 AC 1 ms
4,376 KB
testcase_07 AC 2 ms
4,376 KB
testcase_08 AC 2 ms
4,376 KB
testcase_09 AC 2 ms
4,376 KB
testcase_10 AC 1 ms
4,380 KB
testcase_11 AC 2 ms
4,380 KB
testcase_12 AC 2 ms
4,380 KB
testcase_13 AC 1 ms
4,376 KB
testcase_14 AC 2 ms
4,500 KB
testcase_15 AC 2 ms
4,376 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 AC 44 ms
4,940 KB
testcase_27 AC 44 ms
4,968 KB
testcase_28 AC 44 ms
4,896 KB
testcase_29 AC 44 ms
4,968 KB
testcase_30 AC 43 ms
4,928 KB
testcase_31 AC 40 ms
6,776 KB
testcase_32 AC 40 ms
6,736 KB
testcase_33 AC 45 ms
6,740 KB
testcase_34 WA -
testcase_35 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <algorithm>
#include <iomanip>
#include <vector>
#include <queue>
#include <set>
#include <map>

using namespace std;
typedef long long ll;

int n;
ll a[200000];

void input(){
    cin >> n;
    for(int i = 0; i < n; i++) cin >> a[i];
}


void solve(){
    sort(a, a+n);
    ll ans = 0;
    int cnt = 0;
    vector<ll> dp;
    dp.push_back(1);
    for(int i = 1; i < n; i++){
        int sz = dp.size();
        if(a[i-1]+1 == a[i]){
            if(sz <= 1) dp.push_back(1);
            else dp.push_back(dp[sz-2]+1);
        }else if(a[i-1]+2 == a[i]){
            if(sz == 1) {
                ans += dp[0];
                dp.clear();
                dp.push_back(1);
            }else if(sz >= 2){
                dp.push_back(dp[sz-2]);
                dp.push_back(dp[sz-2]+1);
            }
        }else{
            for(ll x : dp) ans += x;
            if(dp.size() >= 2) ans += dp[sz-2];
            dp.clear();
            dp.push_back(1);
        }
    }
    // cout << ans << endl;
    // for(ll x : dp) cout << x << ' ';
    // cout << endl;
    for(ll x : dp) ans += x;
    if(dp.size() >= 2) ans += dp[dp.size()-2];
    cout << ans << endl;
}

int main(){
    ios::sync_with_stdio(false);
    cin.tie(0);
    cout << setprecision(10) << fixed;
    input();
    solve();
}
0