結果
問題 | No.1854 Limited Bubble Sort |
ユーザー | wnjxykkk |
提出日時 | 2022-03-14 20:51:16 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 2,105 bytes |
コンパイル時間 | 1,542 ms |
コンパイル使用メモリ | 171,092 KB |
実行使用メモリ | 10,624 KB |
最終ジャッジ日時 | 2024-09-21 09:00:24 |
合計ジャッジ時間 | 6,133 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
10,624 KB |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | TLE | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
ソースコード
#include<bits/stdc++.h> using namespace std; #ifndef ONLINE_JUDGE #define dbg(x...) do{cout << "\033[32;1m" << #x << "->" ; err(x);} while(0) void err(){cout << "\033[39;0m" << endl;} template<template<typename...> class T,typename t,typename... A> void err(T<t> a,A... x){for (auto v:a) cout << v << ' '; err(x...);} template<typename T,typename... A> void err(T a,A... x){cout << a << ' '; err(x...);} #else #define dbg(...) #endif typedef long long ll; typedef pair<int,int> pi; typedef vector<int> vi; template<class T> using vc=vector<T>; template<class T> using vvc=vc<vc<T>>; template<class T> void mkuni(vector<T>&v) { sort(v.begin(),v.end()); v.erase(unique(v.begin(),v.end()),v.end()); } template<class T> void print(T x,int suc=1) { cout<<x; if(suc==1) cout<<'\n'; else cout<<' '; } template<class T> void print(const vector<T>&v,int suc=1) { for(int i=0;i<v.size();i++) print(v[i],i==(int)(v.size())-1?suc:2); } int a[1000]; bool ok=1,suc=1; vi ans; void solve(int l,int r) { if(l==r) return ; int mxpos; for(int i=l;i<=r;++i) { if(a[i]>r||a[i]<l) { ok=0; return ; } if(a[i]==r) mxpos=i; } if(mxpos==r) { solve(l,r-1); return ; } if(mxpos+1==r) { ans.push_back(mxpos); swap(a[r-1],a[r]); solve(l,r-1); return ; } for(int i=mxpos+1;i<=r;++i) { if(a[i]!=i-1) { for(int j=i-1;j>=mxpos;--j) { swap(a[j],a[j+1]); ans.push_back(j); } for(int j=mxpos+1;j<i;++j) { swap(a[j],a[j+1]); ans.push_back(j); } } } for(int i=mxpos;i<r;++i) { swap(a[i],a[i+1]); ans.push_back(i); } // print(ans); solve(l,r-1); } int n; int main() { int t; cin>>t; while(t--) { cin>>n; ans.clear(); suc=1; for(int i=1;i<=n;++i) { cin>>a[i]; } int pre=1; for(int i=1;i<=n;++i) { if(a[i]==i) { if(pre!=i) { ok=1; solve(pre,i); if(!ok) { suc=0; break; } pre=i+1; } } else { } } // cout<<pre<<" "<<n<<endl; if(pre!=n) solve(pre,n); if(!suc) cout<<-1<<endl; else { // if(ans.size()==0) print(ans.size()); print(ans); } } }