結果
問題 | No.2210 equence Squence Seuence |
ユーザー |
|
提出日時 | 2023-02-11 02:44:53 |
言語 | C++17 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 84 ms / 2,000 ms |
コード長 | 1,241 bytes |
コンパイル時間 | 3,677 ms |
コンパイル使用メモリ | 254,576 KB |
最終ジャッジ日時 | 2025-02-10 14:01:33 |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 25 |
ソースコード
#include <bits/stdc++.h>#include <atcoder/all>using namespace std;using namespace atcoder;typedef long long ll;//using mint = modint998244353;//using mint = modint1000000007;#define all(...) std::begin(__VA_ARGS__), std::end(__VA_ARGS__)#define rall(...) std::rbegin(__VA_ARGS__), std::rend(__VA_ARGS__)#define debug(x) cerr << "\033[33m(line:" << __LINE__ << ") " << #x << ": " << x << "\033[m" << endl;int dx[4]={1,0,-1,0};int dy[4]={0,1,0,-1};using Graph=vector<vector<int>>;const int inf = INT_MAX / 2; const ll infl = 1LL << 60;template<class T>bool chmax(T& a, const T& b) { if (a < b) { a = b; return 1; } return 0; }template<class T>bool chmin(T& a, const T& b) { if (b < a) { a = b; return 1; } return 0; }int main() {int n,k;cin>>n>>k;vector<int> a(n);for(int i=0;i<n;i++)cin>>a[i];reverse(all(a));deque<int> d={a[0]};deque<int> it={0};for(int i=1;i<n;i++){if(a[i-1]>a[i] or (a[i-1]==a[i] and d[0]!=a[i])){d.push_back(a[i]);it.push_back(i);}else{d.push_front(a[i]);it.push_front(i);}}k--;vector<int> b;reverse(all(a));for(int i=0;i<n;i++){if((n-it[k]-1)!=i){b.push_back(a[i]);}}for(int i=0;i<n-1;i++){if(i)cout<<" ";cout<<b[i];}cout<<endl;}