結果

問題 No.1438 Broken Drawers
ユーザー shu8Creamshu8Cream
提出日時 2021-03-26 21:49:44
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 41 ms / 2,000 ms
コード長 694 bytes
コンパイル時間 2,212 ms
コンパイル使用メモリ 207,432 KB
実行使用メモリ 5,760 KB
最終ジャッジ日時 2024-05-06 15:15:26
合計ジャッジ時間 3,877 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 1 ms
5,248 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 1 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 24 ms
5,632 KB
testcase_07 AC 24 ms
5,504 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 3 ms
5,376 KB
testcase_12 AC 15 ms
5,376 KB
testcase_13 AC 24 ms
5,376 KB
testcase_14 AC 11 ms
5,376 KB
testcase_15 AC 37 ms
5,376 KB
testcase_16 AC 35 ms
5,504 KB
testcase_17 AC 36 ms
5,376 KB
testcase_18 AC 39 ms
5,632 KB
testcase_19 AC 40 ms
5,504 KB
testcase_20 AC 39 ms
5,504 KB
testcase_21 AC 35 ms
5,504 KB
testcase_22 AC 38 ms
5,376 KB
testcase_23 AC 38 ms
5,760 KB
testcase_24 AC 41 ms
5,504 KB
testcase_25 AC 40 ms
5,632 KB
testcase_26 AC 40 ms
5,504 KB
testcase_27 AC 40 ms
5,632 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

/**
*    author:  shu8Cream
*    created: 26.03.2021 21:18:21
**/

#include <bits/stdc++.h>
using namespace std;
#define rep(i,n) for (int i=0; i<(n); i++)
#define all(x) (x).begin(), (x).end()
using ll = long long;
using P = pair<int,int>;
using vi = vector<int>;
using vvi = vector<vi>;

int main() {
    cin.tie(nullptr);
    ios::sync_with_stdio(false);
    int n;
    cin >> n;
    vector<P> a(n);
    rep(i,n){
        cin >> a[i].first;
        a[i].second = i;
    }
    sort(all(a));
    int ans = 0;
    vi used(n);
    rep(i,n){
        if(used[a[i].second]) continue;
        ans++;
        used[a[i].second]=1;
        used[max(0,a[i].second-1)]=1;
    }
    cout << ans << endl;
}
0