結果

問題 No.1268 Fruit Rush 2
ユーザー okok
提出日時 2020-10-23 23:36:00
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 961 bytes
コンパイル時間 1,041 ms
コンパイル使用メモリ 98,692 KB
実行使用メモリ 44,708 KB
最終ジャッジ日時 2023-09-28 18:51:57
合計ジャッジ時間 9,356 ms
ジャッジサーバーID
(参考情報)
judge15 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
4,376 KB
testcase_01 AC 1 ms
4,380 KB
testcase_02 AC 2 ms
4,380 KB
testcase_03 AC 1 ms
4,380 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,380 KB
testcase_08 AC 2 ms
4,380 KB
testcase_09 AC 2 ms
4,380 KB
testcase_10 AC 1 ms
4,380 KB
testcase_11 AC 2 ms
4,376 KB
testcase_12 AC 1 ms
4,376 KB
testcase_13 AC 2 ms
4,376 KB
testcase_14 AC 2 ms
4,376 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 465 ms
43,556 KB
testcase_27 AC 464 ms
43,648 KB
testcase_28 AC 465 ms
43,564 KB
testcase_29 AC 464 ms
44,532 KB
testcase_30 AC 464 ms
44,708 KB
testcase_31 AC 326 ms
19,032 KB
testcase_32 AC 329 ms
18,876 KB
testcase_33 AC 228 ms
18,864 KB
testcase_34 WA -
testcase_35 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<iostream>
#include<string>
#include<iomanip>
#include<cmath>
#include<vector>
#include<algorithm>
#include<utility>
#include<map>

using namespace std;

#define int long long
#define endl "\n"

constexpr long long INF = (long long)1e18;
constexpr long long MOD = 1'000'000'007; 

struct fast_io {
	fast_io(){
		std::cin.tie(nullptr);
		std::ios::sync_with_stdio(false);
	};
} fio;

signed main(){
	cout<<fixed<<setprecision(10);
	
	int N;
    vector<int> A;
    map<int,int> mp;
    int con = 0;
    
    cin>>N;
	
    // A.resize(N);
    
	for(int i = 0; i < N; i++){
        int a;
        cin>>a;
        
        mp[a] = 1;
        
        A.push_back(a);
        A.push_back(a+1);
    }
    
    sort(A.begin(), A.end());
    A.erase(unique(A.begin(), A.end()), A.end());
    
    for(int i = 0; i < A.size(); i++){
        if(mp[A[i]-1]) mp[A[i]] += mp[A[i]-2];
        
        con += mp[A[i]];
    }
    
    cout<<con<<endl;
    
	return 0;
}
0