結果

問題 No.1438 Broken Drawers
ユーザー zuminzumin
提出日時 2021-03-26 21:35:46
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 199 ms / 2,000 ms
コード長 491 bytes
コンパイル時間 962 ms
コンパイル使用メモリ 86,744 KB
実行使用メモリ 14,336 KB
最終ジャッジ日時 2024-05-06 14:54:32
合計ジャッジ時間 5,044 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 1 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 151 ms
14,208 KB
testcase_07 AC 141 ms
14,208 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 8 ms
5,376 KB
testcase_12 AC 60 ms
7,296 KB
testcase_13 AC 103 ms
9,856 KB
testcase_14 AC 39 ms
6,016 KB
testcase_15 AC 174 ms
13,312 KB
testcase_16 AC 174 ms
13,056 KB
testcase_17 AC 189 ms
13,568 KB
testcase_18 AC 199 ms
13,696 KB
testcase_19 AC 186 ms
13,824 KB
testcase_20 AC 194 ms
13,952 KB
testcase_21 AC 199 ms
13,696 KB
testcase_22 AC 190 ms
13,952 KB
testcase_23 AC 191 ms
14,208 KB
testcase_24 AC 188 ms
14,336 KB
testcase_25 AC 199 ms
14,208 KB
testcase_26 AC 191 ms
14,208 KB
testcase_27 AC 193 ms
14,208 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
#include <map>
#include <algorithm>

using namespace std;

int main(){
    int n,ans=0;
    cin>>n;
    vector<int> a(n),used(n,0);
    map<int,int> place;

    for(int i=0;i<n;i++){
        cin>>a[i];
        place[a[i]]=i;
    }
    sort(a.begin(),a.end());

    for(int ai:a){
        if(used[place[ai]]) continue;
        int pi=place[ai];
        used[pi]=1;
        if(pi>0) used[pi-1]=1;
        ans++;
    }
    cout<<ans<<endl;

    return 0;
}
0