Submission #370814

# Submission time Handle Problem Language Result Execution time Memory
370814 2021-02-24T17:09:47 Z sad Cat (info1cup19_cat) C++14
0 / 100
208 ms 1212 KB
#include <bits/stdc++.h>
#define pb push_back
#define ll long long
#define fi first
#define se second
using namespace std;
vector<int>v,vv;int n;
vector<pair<int,int>>w;
int a[1000000];
int main()
{
    int t;cin>>t;
    while(t--)
    {
        int n;
        cin>>n;int re=0;
        for(int i=1;i<=n;i++)cin>>a[i];
        for(int i=1;i<=n;i++)
        {
            if(a[i]==i)continue;
            for(int j=i+1;j<=n;j++)
            {
                if(a[j]==i)
                {
                    re++;
                    w.pb({i,j});
                    swap(a[i],a[j]);
                    swap(a[n-i+1],a[n+1-j]);break;
                }
            }
        }
        for(int i=1;i<=n;i++)cout<<a[i]<<" ";
        if(re==-1)
        {
            cout<<-1<<endl;w.clear();continue;
        }
        cout<<0<<" "<<w.size()<<endl;
        for(auto it:w)
        if(it.fi==it.se)continue;
        else cout<<it.fi<<" "<<it.se<<endl;
        w.clear();
    }
}
# Verdict Execution time Memory Grader output
1 Incorrect 47 ms 492 KB Wrong answer
# Verdict Execution time Memory Grader output
1 Incorrect 208 ms 1212 KB Wrong answer
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 47 ms 492 KB Wrong answer
# Verdict Execution time Memory Grader output
1 Incorrect 208 ms 1212 KB Wrong answer
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 47 ms 492 KB Wrong answer