結果

問題 No.2210 equence Squence Seuence
ユーザー maeshunmaeshun
提出日時 2024-07-07 12:00:03
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,126 bytes
コンパイル時間 4,751 ms
コンパイル使用メモリ 265,768 KB
実行使用メモリ 6,832 KB
最終ジャッジ日時 2024-07-07 12:00:12
合計ジャッジ時間 8,063 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 AC 29 ms
5,376 KB
testcase_06 AC 27 ms
5,376 KB
testcase_07 WA -
testcase_08 AC 2 ms
5,376 KB
testcase_09 AC 2 ms
5,376 KB
testcase_10 AC 1 ms
5,376 KB
testcase_11 WA -
testcase_12 AC 1 ms
5,376 KB
testcase_13 AC 79 ms
6,828 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 79 ms
6,828 KB
testcase_17 WA -
testcase_18 WA -
testcase_19 AC 1 ms
5,376 KB
testcase_20 AC 2 ms
5,376 KB
testcase_21 WA -
testcase_22 WA -
testcase_23 RE -
testcase_24 RE -
testcase_25 RE -
testcase_26 RE -
testcase_27 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#include <atcoder/all>
using namespace std;
using namespace atcoder;
#define rep(i, n) for(int i=0;i<(n);++i)
#define rep1(i, n) for(int i=1;i<=(n);i++)
#define ll long long
using mint = modint998244353;
using P = pair<ll,ll>;
using lb = long double;
using T = tuple<ll, ll, ll>;
#ifdef LOCAL
#  include <debug_print.hpp>
#  define dbg(...) debug_print::multi_print(#__VA_ARGS__, __VA_ARGS__)
#else
#  define dbg(...) (static_cast<void>(0))
#endif

int main()
{
    int n, k;
    cin >> n >> k;
    vector<int> a(n);
    rep(i,n) cin >> a[i];
    deque<int> q;
    q.push_back(n-1);
    dsu uf(n);
    for(int i=n-1;i>=1;i--){
        if(a[i-1]>a[i]) {
            q.push_front(i-1);
        }
        else if(a[i-1]<a[i]) {
            q.push_back(i-1);
        }
        else{
            uf.merge(i,i-1);
        }
    }
    vector<int> idx;
    for(int v : q) {
        rep(j,uf.size(v)) {
            idx.push_back(v);
        }

    }
    int num = q[k-1];
    dbg(num);
    dbg(q);
    rep(i,n) {
        if(i==num) continue;
        cout << a[i] << " ";
    }
    cout << endl;
    return 0;
}
0