結果
問題 | No.2210 equence Squence Seuence |
ユーザー | FplusFplusF |
提出日時 | 2023-02-10 22:14:56 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 826 bytes |
コンパイル時間 | 1,954 ms |
コンパイル使用メモリ | 203,408 KB |
実行使用メモリ | 7,144 KB |
最終ジャッジ日時 | 2024-07-07 16:26:47 |
合計ジャッジ時間 | 4,076 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
5,248 KB |
testcase_01 | AC | 1 ms
5,376 KB |
testcase_02 | AC | 1 ms
5,376 KB |
testcase_03 | AC | 15 ms
5,376 KB |
testcase_04 | WA | - |
testcase_05 | AC | 27 ms
5,376 KB |
testcase_06 | AC | 23 ms
5,376 KB |
testcase_07 | AC | 58 ms
6,836 KB |
testcase_08 | AC | 2 ms
5,376 KB |
testcase_09 | AC | 1 ms
5,376 KB |
testcase_10 | AC | 2 ms
5,376 KB |
testcase_11 | WA | - |
testcase_12 | AC | 1 ms
5,376 KB |
testcase_13 | AC | 72 ms
7,016 KB |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | AC | 73 ms
7,012 KB |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | AC | 2 ms
5,376 KB |
testcase_20 | AC | 1 ms
5,376 KB |
testcase_21 | AC | 1 ms
5,376 KB |
testcase_22 | WA | - |
testcase_23 | AC | 57 ms
6,720 KB |
testcase_24 | AC | 42 ms
5,384 KB |
testcase_25 | AC | 50 ms
6,568 KB |
testcase_26 | AC | 68 ms
6,968 KB |
testcase_27 | AC | 20 ms
5,376 KB |
ソースコード
#include<bits/stdc++.h> using namespace std; #define rep(i,n) for (long long i=0;i<(long long)(n);i++) #define all(v) v.begin(),v.end() using ll=long long; using pll=pair<ll,ll>; using tll=tuple<ll,ll,ll>; const ll INF=(1ll<<60); template<class T> void chmin(T &a,T b){ if(a>b){ a=b; } } template<class T> void chmax(T &a,T b){ if(a<b){ a=b; } } ll f(ll x,ll a,ll b){ return a*x+b; } ll n,k; vector<ll> a,ans; void f(ll x){ if((n-1-x<=k&&a[x]<=a[x+1])||(k==0&&a[x+1]<a[x])){ for(ll i=x+1;i<n;i++) ans.push_back(a[i]); return; }else{ ans.push_back(a[x]); if(a[x+1]<a[x]) k--; f(x+1); } } int main(){ cin >> n >> k; k--; a.resize(n); rep(i,n) cin >> a[i]; f(0); for(auto &i:ans) cout << i << " "; cout << endl; }