結果

問題 No.2210 equence Squence Seuence
ユーザー umezoumezo
提出日時 2023-02-10 22:40:41
言語 C++17(gcc12)
(gcc 12.3.0 + boost 1.87.0)
結果
AC  
実行時間 38 ms / 2,000 ms
コード長 957 bytes
コンパイル時間 1,833 ms
コンパイル使用メモリ 208,352 KB
実行使用メモリ 6,960 KB
最終ジャッジ日時 2024-07-07 16:45:18
合計ジャッジ時間 4,087 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 25
権限があれば一括ダウンロードができます

ソースコード

diff #

#define rep(i,n) for(int i=0;i<(int)(n);i++)
#define ALL(v) v.begin(),v.end()
typedef long long ll;
 
#include<bits/stdc++.h>
using namespace std;

int main(){
  ios::sync_with_stdio(false);
  std::cin.tie(nullptr);
  
  int n,k;
  cin>>n>>k;
  vector<int> A(n);
  rep(i,n) cin>>A[i];
  
  deque<int> deq;
  rep(i,n) deq.push_back(i+1);
  
  vector<int> C;
  int tmp=0;
  rep(i,n-1){
    tmp++;
    if(A[i]<A[i+1]){
      while(tmp){
        auto t=deq.back();
        deq.pop_back();
        C.push_back(t);
        tmp--;
      }
    }
    else if(A[i]>A[i+1]){
      while(tmp){
        auto t=deq.front();
        deq.pop_front();
        C.push_back(t);
        tmp--;
      }
    }
  }
  
  while(deq.size()){
    auto t=deq.front();
    deq.pop_front();
    C.push_back(t);
  }

  vector<int> ANS;
  rep(i,n){
    if(C[i]==k) continue;
    ANS.push_back(A[i]);
  }
  rep(i,n-1){
    if(i) cout<<" ";
    cout<<ANS[i];
  }
  cout<<endl;

  return 0;
}
0