結果

問題 No.1285 ゴミ捨て
ユーザー kappybarkappybar
提出日時 2020-11-15 19:53:52
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 72 ms / 2,000 ms
コード長 855 bytes
コンパイル時間 1,547 ms
コンパイル使用メモリ 175,004 KB
実行使用メモリ 8,832 KB
最終ジャッジ日時 2024-11-28 21:53:16
合計ジャッジ時間 2,975 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,820 KB
testcase_02 AC 1 ms
6,820 KB
testcase_03 AC 2 ms
6,820 KB
testcase_04 AC 2 ms
6,816 KB
testcase_05 AC 2 ms
6,816 KB
testcase_06 AC 2 ms
6,816 KB
testcase_07 AC 67 ms
8,448 KB
testcase_08 AC 4 ms
6,824 KB
testcase_09 AC 27 ms
6,816 KB
testcase_10 AC 58 ms
7,808 KB
testcase_11 AC 53 ms
7,552 KB
testcase_12 AC 38 ms
6,816 KB
testcase_13 AC 38 ms
6,816 KB
testcase_14 AC 62 ms
8,192 KB
testcase_15 AC 44 ms
6,820 KB
testcase_16 AC 12 ms
6,820 KB
testcase_17 AC 12 ms
6,820 KB
testcase_18 AC 11 ms
6,816 KB
testcase_19 AC 24 ms
6,816 KB
testcase_20 AC 10 ms
6,824 KB
testcase_21 AC 15 ms
6,820 KB
testcase_22 AC 70 ms
8,832 KB
testcase_23 AC 72 ms
8,832 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#define rep(i,n) for(int i=0;i<(int)(n);i++)
using namespace std;
using ll = long long ;
using P = pair<int,int> ;
using pll = pair<long long,long long>;
constexpr ll INF = 1e9;
constexpr long long LINF = 1e17;
constexpr int MOD = 1000000007;
constexpr double PI = 3.14159265358979323846;

int main(){
    int n;
    cin >> n;
    vector<ll> a(n);
    rep(i,n) cin >> a[i];
    set<ll> st;
    rep(i,n) st.insert(a[i]);
    int cnt = 0;
    while(!st.empty()){
        auto it = st.begin();
        while(it != st.end()){
            auto itr = st.upper_bound((*it)+1);
            if(itr == st.end()){
                st.erase(it);
                break;
            }
            else{
                st.erase(it);
                it = itr;
            }
        }
        ++cnt;
    }
    cout << cnt << endl;

    return 0;
}
0