結果

問題 No.2210 equence Squence Seuence
ユーザー 蜜蜂蜜蜂
提出日時 2023-02-10 22:15:21
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,411 bytes
コンパイル時間 3,278 ms
コンパイル使用メモリ 229,464 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-07-07 16:27:22
合計ジャッジ時間 5,103 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 1 ms
6,940 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 8 ms
6,940 KB
testcase_04 WA -
testcase_05 AC 13 ms
6,940 KB
testcase_06 AC 11 ms
6,940 KB
testcase_07 AC 26 ms
6,940 KB
testcase_08 AC 2 ms
6,944 KB
testcase_09 AC 1 ms
6,944 KB
testcase_10 AC 2 ms
6,940 KB
testcase_11 WA -
testcase_12 AC 2 ms
6,940 KB
testcase_13 AC 32 ms
6,940 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 34 ms
6,940 KB
testcase_17 WA -
testcase_18 WA -
testcase_19 AC 1 ms
6,944 KB
testcase_20 AC 2 ms
6,940 KB
testcase_21 AC 2 ms
6,940 KB
testcase_22 WA -
testcase_23 AC 25 ms
6,944 KB
testcase_24 AC 19 ms
6,940 KB
testcase_25 AC 22 ms
6,944 KB
testcase_26 AC 28 ms
6,944 KB
testcase_27 AC 9 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

//g++ 1.cpp -std=c++17 -O2 -I .
#include <bits/stdc++.h>
using namespace std;

#include <atcoder/all>
using namespace atcoder;

using ll = long long;
using ld = long double;
 
using vi = vector<int>;
using vvi = vector<vi>;
using vll = vector<ll>;
using vvll = vector<vll>;
using vld = vector<ld>;
using vvld = vector<vld>;
using vst = vector<string>;
using vvst = vector<vst>;
 
#define fi first
#define se second
#define pb push_back
#define eb emplace_back
#define pq_big(T) priority_queue<T,vector<T>,less<T>>
#define pq_small(T) priority_queue<T,vector<T>,greater<T>>
#define all(a) a.begin(),a.end()
#define rep(i,start,end) for(ll i=start;i<(ll)(end);i++)
#define per(i,start,end) for(ll i=start;i>=(ll)(end);i--)
#define uniq(a) sort(all(a));a.erase(unique(all(a)),a.end())

// [l,r)
void solve(int n,int l,int r,int k,vi &a){
  if(n==1){
    return;
  }
  if(a[l]>a[l+1]){
    if(k==1){
      rep(i,l+1,r)cout<<a[i]<<" ";
      return;
    }
    cout<<a[l]<<" ";
    solve(n-1,l+1,r,k-1,a);
    return;
  }
  if(a[l]<a[l+1]){
    if(k==n){
      rep(i,l+1,r)cout<<a[i]<<" ";
      return;
    }
    cout<<a[l]<<" ";
    solve(n-1,l+1,r,k,a);
    return;
  }

  cout<<a[l]<<" ";
  if(k==n){
    solve(n-1,l+1,r,k-1,a);
    return;
  }
  solve(n-1,l+1,r,k,a);
}

int main(){
  ios::sync_with_stdio(false);
  cin.tie(nullptr);

  int n,k;cin>>n>>k;
  vi a(n);
  rep(i,0,n)cin>>a[i];

  solve(n,0,n,k,a);
}
0