結果

問題 No.1438 Broken Drawers
ユーザー どららどらら
提出日時 2021-03-27 03:54:15
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 193 ms / 2,000 ms
コード長 748 bytes
コンパイル時間 4,693 ms
コンパイル使用メモリ 239,272 KB
実行使用メモリ 14,156 KB
最終ジャッジ日時 2024-11-29 08:03:05
合計ジャッジ時間 9,139 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 3 ms
5,248 KB
testcase_02 AC 2 ms
5,248 KB
testcase_03 AC 2 ms
5,248 KB
testcase_04 AC 2 ms
5,248 KB
testcase_05 AC 2 ms
5,248 KB
testcase_06 AC 148 ms
14,156 KB
testcase_07 AC 116 ms
9,420 KB
testcase_08 AC 2 ms
5,248 KB
testcase_09 AC 2 ms
5,248 KB
testcase_10 AC 3 ms
5,248 KB
testcase_11 AC 7 ms
5,248 KB
testcase_12 AC 55 ms
6,096 KB
testcase_13 AC 98 ms
7,756 KB
testcase_14 AC 37 ms
5,248 KB
testcase_15 AC 170 ms
10,192 KB
testcase_16 AC 167 ms
9,928 KB
testcase_17 AC 168 ms
10,316 KB
testcase_18 AC 180 ms
10,444 KB
testcase_19 AC 186 ms
10,444 KB
testcase_20 AC 172 ms
10,564 KB
testcase_21 AC 177 ms
10,444 KB
testcase_22 AC 190 ms
10,576 KB
testcase_23 AC 193 ms
10,824 KB
testcase_24 AC 180 ms
10,700 KB
testcase_25 AC 179 ms
10,704 KB
testcase_26 AC 186 ms
10,832 KB
testcase_27 AC 183 ms
10,700 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#include <atcoder/all>
using namespace std;
using namespace atcoder;
#define REP(i,a,n) for(int i=(a); i<(int)(n); i++)
#define rep(i,n) REP(i,0,n)
#define FOR(it,c) for(__typeof((c).begin()) it=(c).begin(); it!=(c).end(); ++it)
#define ALLOF(c) (c).begin(), (c).end()
typedef long long ll;
typedef unsigned long long ull;
//using mint = modint1000000007;
//using mint = modint998244353;



int main(){
  int N;
  cin >> N;
  vector<pair<int,int>> v;
  rep(i,N){
    int a;
    cin >> a;
    v.emplace_back(a,i+1);
  }
  sort(ALLOF(v));

  int ret = 0;
  map<int,int> m;
  for(int i=N-1; i>=0; i--){
    if(m.count(v[i].second-1) > 0) continue;
    m[v[i].second]++;
    ret++;
  }

  cout << ret << endl;
  
  return 0;
}
0