結果

問題 No.1438 Broken Drawers
ユーザー se1ka2se1ka2
提出日時 2021-03-26 21:24:45
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 77 ms / 2,000 ms
コード長 528 bytes
コンパイル時間 797 ms
コンパイル使用メモリ 71,004 KB
実行使用メモリ 6,144 KB
最終ジャッジ日時 2024-05-06 14:13:11
合計ジャッジ時間 3,070 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 3 ms
5,248 KB
testcase_01 AC 3 ms
5,376 KB
testcase_02 AC 3 ms
5,376 KB
testcase_03 AC 3 ms
5,376 KB
testcase_04 AC 3 ms
5,376 KB
testcase_05 AC 3 ms
5,376 KB
testcase_06 AC 64 ms
6,144 KB
testcase_07 AC 61 ms
6,016 KB
testcase_08 AC 3 ms
5,376 KB
testcase_09 AC 3 ms
5,376 KB
testcase_10 AC 3 ms
5,376 KB
testcase_11 AC 6 ms
5,376 KB
testcase_12 AC 28 ms
5,376 KB
testcase_13 AC 45 ms
5,760 KB
testcase_14 AC 20 ms
5,376 KB
testcase_15 AC 68 ms
5,888 KB
testcase_16 AC 63 ms
5,888 KB
testcase_17 AC 73 ms
6,144 KB
testcase_18 AC 75 ms
6,016 KB
testcase_19 AC 74 ms
6,144 KB
testcase_20 AC 74 ms
6,016 KB
testcase_21 AC 74 ms
6,144 KB
testcase_22 AC 72 ms
6,016 KB
testcase_23 AC 77 ms
6,144 KB
testcase_24 AC 75 ms
6,016 KB
testcase_25 AC 77 ms
6,016 KB
testcase_26 AC 76 ms
6,016 KB
testcase_27 AC 73 ms
6,016 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <algorithm>
#include <iostream>
using namespace std;
typedef pair<int, int> P;

int main()
{
    int n;
    cin >> n;
    int a[200005];
    P p[200005];
    for(int i = 0; i < n; i++){
        cin >> a[i];
        p[i] = P(a[i], i);
    }
    sort(p, p + n);
    bool b[200005];
    for(int i = 0; i < n; i++) b[i] = true;
    int ans = 0;
    for(int i = 0; i < n; i++){
        if(b[p[i].second]){
            ans++;
            if(p[i].second) b[p[i].second - 1] = false;
        }
    }
    cout << ans << endl;
}
0