結果

問題 No.2210 equence Squence Seuence
ユーザー ぷらぷら
提出日時 2023-02-10 21:39:15
言語 C++17(gcc12)
(gcc 12.3.0 + boost 1.87.0)
結果
AC  
実行時間 282 ms / 2,000 ms
コード長 1,008 bytes
コンパイル時間 2,047 ms
コンパイル使用メモリ 208,968 KB
実行使用メモリ 7,156 KB
最終ジャッジ日時 2024-07-07 15:50:49
合計ジャッジ時間 6,018 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 25
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

vector<int>A,B;

bool f(int i,int j) {
    if(i == j) {
        return false;
    }
    bool s = false;
    if(i > j) {
        s = true;
        swap(i,j);
    }
    int it = upper_bound(B.begin(),B.end(),i)-B.begin();
    if(it == B.size() || B[it] > j) return false;
    if(A[B[it]-1] < A[B[it]]) {
        if(!s) return false;
        else return true;
    }
    if(!s) return true;
    return false;
}

int main() {
    ios::sync_with_stdio(false);
    cin.tie(nullptr);
    int N,K;
    cin >> N >> K;
    A.resize(N);
    for(int i = 0; i < N; i++) {
        cin >> A[i];
        if(i && A[i-1] != A[i]) {
            B.push_back(i);
        }
    }
    vector<int>ans(N);
    iota(ans.begin(),ans.end(),0);
    sort(ans.begin(),ans.end(),f);
    vector<int>X;
    for(int i = 0; i < N; i++) {
        if(i == ans[K-1]) continue;
        X.push_back(A[i]);
    }
    for(int i = 0; i < N-1; i++) {
        cout << X[i] << ((i+1 == N-1)?"\n":" ");
    }
}
0