This submission is migrated from previous version of oj.uz, which used different machine for grading. This submission may have different result if resubmitted.
#include <bits/stdc++.h>
#include "art.h"
using namespace std;
//#define int long long
#define ll long long
#define ld long double
#define pb push_back
#define nd second
#define st first
#define sz size
#define forr(i, n) for(int i=1;i<=n;i++)
const ll infl=1e18+90;
const int inf=1e9+90;
int X;
int s[8]{0, 7, 4, 5, 2, 1, 3, 6};
/*
void answer(vector<int> a)
{
for(auto it:a) cout<<it<<" ";
cout<<"\n";
}
int publish(vector<int> a)
{
cerr<<"wchodze dla a = ";
for(auto it:a) cerr<<it<<" ";
cerr<<"\n";
int wyn=0;
for(int i=0;i<X;i++)
{
for(int j=i+1;j<X;j++)
{
//cerr<<"s["<<i<<"] = "<<s[i]<<" s["<<j<<"] = "<<s[j]<<"\n";
if(s[a[i]]<s[a[j]])
{
//cerr<<"dla i, j = "<<i<<" "<<j<<"\n";
wyn++;
}
}
}
cerr<<"zwracam wyn = "<<wyn<<"\n";
return wyn;
}
*/
vector<int> wek;
void solve(int n)
{
X=n;
for(int i=1;i<=n;i++) wek.pb(i);
int x=publish(wek);
for(int i=n-2;i>=0;i--)
{
swap(wek[i], wek[n-1]);
int x2=publish(wek);
swap(wek[i], wek[n-1]);
int r=x2-x;
r+=n-1-i;
r/=2;
int licz=i;
while(r>0)
{
swap(wek[licz], wek[licz+1]);
licz++;
r--;
}
x=x2;
}
reverse(wek.begin(), wek.end());
answer(wek);
}
/*
int main()
{
solve(7);
}
*/
Compilation message (stderr)
interface.cpp: In function 'int publish(std::vector<int>)':
interface.cpp:20:17: warning: comparison of integer expressions of different signedness: 'std::vector<int>::size_type' {aka 'long unsigned int'} and 'int' [-Wsign-compare]
20 | if(v.size() != N) {
| ~~~~~~~~~^~~~
interface.cpp: In function 'void answer(std::vector<int>)':
interface.cpp:36:17: warning: comparison of integer expressions of different signedness: 'std::vector<int>::size_type' {aka 'long unsigned int'} and 'int' [-Wsign-compare]
36 | if(v.size() != N) {
| ~~~~~~~~~^~~~
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |