結果

問題 No.2210 equence Squence Seuence
ユーザー 鴨志田卓鴨志田卓
提出日時 2023-02-11 01:57:46
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 585 ms / 2,000 ms
コード長 650 bytes
コンパイル時間 2,174 ms
コンパイル使用メモリ 201,708 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-07-07 19:00:07
合計ジャッジ時間 8,624 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 108 ms
5,376 KB
testcase_04 AC 122 ms
5,376 KB
testcase_05 AC 189 ms
5,376 KB
testcase_06 AC 161 ms
5,376 KB
testcase_07 AC 402 ms
5,376 KB
testcase_08 AC 1 ms
5,376 KB
testcase_09 AC 2 ms
5,376 KB
testcase_10 AC 1 ms
5,376 KB
testcase_11 AC 2 ms
5,376 KB
testcase_12 AC 2 ms
5,376 KB
testcase_13 AC 585 ms
5,376 KB
testcase_14 AC 563 ms
5,376 KB
testcase_15 AC 503 ms
5,376 KB
testcase_16 AC 499 ms
5,376 KB
testcase_17 AC 506 ms
5,376 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 1 ms
5,376 KB
testcase_22 AC 1 ms
5,376 KB
testcase_23 AC 404 ms
5,376 KB
testcase_24 AC 300 ms
5,376 KB
testcase_25 AC 365 ms
5,376 KB
testcase_26 AC 484 ms
5,376 KB
testcase_27 AC 133 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

const int N = 1 << 18;

int n, k, a[N];

int main() {
    cin >> n >> k;
    for(int i = 1; i <= n; i ++)
        cin >> a[i];
    
    vector<int> q(n);
    int l = 0, r = n - 1;
    for(int i = 1, lst = 1; i <= n; i ++) {
        if(a[i] < a[i + 1])
            while(lst <= i)
                q[r --] = lst ++;
        if(a[i] > a[i + 1])
            while(lst <= i)
                q[l ++] = lst ++;
    }

    for(int x : q) cerr << x << " "; cerr << "\n";

    for(int i = 1; i <= n; i ++)
        if(i != q[k - 1])
            cout << a[i] << " ";
}


/*
4 1 5 4 1 1

4 3 3 3 1
||
\/
5 3 3 3 1
*/
0