結果

問題 No.2210 equence Squence Seuence
ユーザー SSRSSSRS
提出日時 2023-02-10 21:27:16
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 87 ms / 2,000 ms
コード長 979 bytes
コンパイル時間 1,867 ms
コンパイル使用メモリ 176,660 KB
実行使用メモリ 6,492 KB
最終ジャッジ日時 2024-07-07 15:36:53
合計ジャッジ時間 4,384 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 19 ms
5,376 KB
testcase_04 AC 20 ms
5,376 KB
testcase_05 AC 31 ms
5,376 KB
testcase_06 AC 26 ms
5,376 KB
testcase_07 AC 67 ms
6,084 KB
testcase_08 AC 2 ms
5,376 KB
testcase_09 AC 2 ms
5,376 KB
testcase_10 AC 3 ms
5,376 KB
testcase_11 AC 2 ms
5,376 KB
testcase_12 AC 2 ms
5,376 KB
testcase_13 AC 83 ms
6,368 KB
testcase_14 AC 83 ms
6,404 KB
testcase_15 AC 83 ms
6,364 KB
testcase_16 AC 83 ms
6,368 KB
testcase_17 AC 87 ms
6,492 KB
testcase_18 AC 2 ms
5,376 KB
testcase_19 AC 2 ms
5,376 KB
testcase_20 AC 2 ms
5,376 KB
testcase_21 AC 2 ms
5,376 KB
testcase_22 AC 2 ms
5,376 KB
testcase_23 AC 60 ms
5,376 KB
testcase_24 AC 47 ms
5,376 KB
testcase_25 AC 55 ms
5,376 KB
testcase_26 AC 72 ms
5,376 KB
testcase_27 AC 21 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
int main(){
  int N, K;
  cin >> N >> K;
  K--;
  vector<int> A(N);
  for (int i = 0; i < N; i++){
    cin >> A[i];
  }
  vector<pair<int, int>> P;
  P.push_back(make_pair(A[0], 1));
  for (int i = 1; i < N; i++){
    if (A[i] == A[i - 1]){
      P.back().second++;
    } else {
      P.push_back(make_pair(A[i], 1));
    }
  }
  int cnt = P.size();
  deque<int> dq;
  for (int i = 0; i < P[cnt - 1].second; i++){
    dq.push_back(cnt - 1);
  }
  for (int i = cnt - 2; i >= 0; i--){
    if (P[i].first < P[i + 1].first){
      for (int j = 0; j < P[i].second; j++){
        dq.push_back(i);
      }
    } else {
      for (int j = 0; j < P[i].second; j++){
        dq.push_front(i);
      }
    }
  }
  int p = dq[K];
  int s = 0;
  for (int i = 0; i < p; i++){
    s += P[i].second;
  }
  A.erase(A.begin() + s);
  for (int i = 0; i < N - 1; i++){
    cout << A[i];
    if (i < N - 2){
      cout << ' ';
    }
  }
  cout << endl;
}
0