結果

問題 No.1438 Broken Drawers
ユーザー どららどらら
提出日時 2021-03-27 03:54:15
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 161 ms / 2,000 ms
コード長 748 bytes
コンパイル時間 3,909 ms
コンパイル使用メモリ 239,272 KB
実行使用メモリ 14,280 KB
最終ジャッジ日時 2024-05-06 21:46:27
合計ジャッジ時間 7,858 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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 1 ms
5,376 KB
testcase_06 AC 135 ms
14,280 KB
testcase_07 AC 110 ms
9,420 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 7 ms
5,376 KB
testcase_12 AC 52 ms
6,092 KB
testcase_13 AC 87 ms
7,880 KB
testcase_14 AC 35 ms
5,376 KB
testcase_15 AC 146 ms
10,188 KB
testcase_16 AC 140 ms
10,060 KB
testcase_17 AC 148 ms
10,296 KB
testcase_18 AC 153 ms
10,572 KB
testcase_19 AC 151 ms
10,572 KB
testcase_20 AC 151 ms
10,576 KB
testcase_21 AC 145 ms
10,444 KB
testcase_22 AC 151 ms
10,572 KB
testcase_23 AC 156 ms
10,828 KB
testcase_24 AC 154 ms
10,704 KB
testcase_25 AC 156 ms
10,696 KB
testcase_26 AC 161 ms
10,700 KB
testcase_27 AC 161 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