結果

問題 No.2210 equence Squence Seuence
ユーザー keisuke6keisuke6
提出日時 2023-02-10 21:29:19
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 413 bytes
コンパイル時間 2,108 ms
コンパイル使用メモリ 208,484 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-07-07 15:39:53
合計ジャッジ時間 4,551 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 AC 25 ms
5,376 KB
testcase_07 AC 62 ms
5,760 KB
testcase_08 WA -
testcase_09 AC 2 ms
5,376 KB
testcase_10 AC 2 ms
5,376 KB
testcase_11 AC 2 ms
5,376 KB
testcase_12 AC 2 ms
5,376 KB
testcase_13 AC 75 ms
6,528 KB
testcase_14 AC 75 ms
6,400 KB
testcase_15 AC 78 ms
6,400 KB
testcase_16 AC 74 ms
6,400 KB
testcase_17 WA -
testcase_18 AC 2 ms
5,376 KB
testcase_19 AC 2 ms
5,376 KB
testcase_20 WA -
testcase_21 AC 2 ms
5,376 KB
testcase_22 WA -
testcase_23 AC 58 ms
5,888 KB
testcase_24 AC 46 ms
5,376 KB
testcase_25 AC 53 ms
5,504 KB
testcase_26 AC 68 ms
6,272 KB
testcase_27 AC 21 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
#define int long long
signed main(){
  int N,K;
  cin>>N>>K;
  
  deque<int> q;
  vector<int> S(N);
  for(int i=0;i<N;i++) cin>>S[i];
  q.push_back(N-1);
  for(int i=N-2;i>=0;i--){
      if(S[i] < S[i+1]) q.push_back(i);
      else q.push_front(i);
  }
  for(int i=0;i<K-1;i++) q.pop_front();
  for(int i=0;i<N;i++)if(i != q.front()) cout<<S[i]<<' ';
  cout<<endl;
}
0