結果

問題 No.2210 equence Squence Seuence
ユーザー maksimmaksim
提出日時 2023-02-11 00:11:48
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 61 ms / 2,000 ms
コード長 638 bytes
コンパイル時間 1,816 ms
コンパイル使用メモリ 172,692 KB
実行使用メモリ 8,064 KB
最終ジャッジ日時 2024-07-07 18:04:51
合計ジャッジ時間 4,196 ms
ジャッジサーバーID
(参考情報)
judge2 / 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 AC 12 ms
5,376 KB
testcase_04 AC 14 ms
5,376 KB
testcase_05 AC 21 ms
5,376 KB
testcase_06 AC 19 ms
5,376 KB
testcase_07 AC 44 ms
7,168 KB
testcase_08 AC 2 ms
5,376 KB
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 61 ms
8,064 KB
testcase_14 AC 58 ms
7,936 KB
testcase_15 AC 55 ms
8,064 KB
testcase_16 AC 55 ms
7,936 KB
testcase_17 AC 56 ms
8,064 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 32 ms
7,040 KB
testcase_24 AC 24 ms
6,144 KB
testcase_25 AC 29 ms
6,656 KB
testcase_26 AC 38 ms
7,936 KB
testcase_27 AC 12 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

using namespace std;
#define int long long
int32_t main()
{
    ios_base::sync_with_stdio(false);cin.tie(0);cout.tie(0);
    int n,k;cin>>n>>k;
    int a[n+1];for(int i=0;i<n;++i) cin>>a[i]; a[n]=1e9;
    bool h[n];for(int i=0;i<n;++i) h[i]=(a[i]!=a[i+1]);
    int nxt[n];
    for(int i=n-1;i>=0;--i)
    {
        if(h[i]) nxt[i]=i;
        else nxt[i]=nxt[i+1];
    }
    vector<int> v(n);iota(v.begin(),v.end(),0);
    sort(v.begin(),v.end(),[&](int i,int j) {
    int pos=nxt[min(i,j)];
    return (i<j)^(a[pos]<a[pos+1]);
         });
    for(int i=0;i<n;++i) if(i!=v[k-1]) cout<<a[i]<<' ';
    return 0;
}
0