| # | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 | 
|---|---|---|---|---|---|---|---|
| 1054140 | huutuan | Secret Permutation (RMI19_permutation) | C++14 | 10 ms | 344 KiB | 
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "permutation.h"
#include <bits/stdc++.h>
using namespace std;
mt19937 rng(69420);
int rand(int l, int r){
   return uniform_int_distribution<int>(l, r)(rng);
}
void solve(int n) {
   vector<int> ans(n+1);
   vector<int> v(n);
   iota(v.begin(), v.end(), 1);
   vector<int> d1(n+1);
   for (int i=0; i<n; ++i){
      d1[v[0]]=query(v);
      rotate(v.begin(), v.begin()+1, v.end());
   }
   int sum=accumulate(d1.begin(), d1.end(), 0)/(n-1);
   for (int &i:d1) i=sum-i;
   auto find=[&](int x, int y){
      if (x>y) swap(x, y);
      if (y-x==1) return d1[y];
      if (y-x==n-1) return d1[1];
      vector<int> vv(n);
      iota(vv.begin(), vv.end(), 1);
      rotate(vv.begin(), vv.begin()+x-1, vv.end());
      reverse(vv.begin(), vv.begin()+y-x);
      int s=query(vv);
      for (int i=1; i<n; ++i){
         if (abs(vv[i]-vv[i-1])==1){
            s-=d1[max(vv[i], vv[i-1])];
         }else if (abs(vv[i]-vv[i-1])==n-1){
            s-=d1[1];
         }
      }
      return s;
   };
   ans[2]=ans[1]+d1[2];
   for (int i=3; i<=n; ++i){
      int t1=ans[i-1]+d1[i];
      int t2=ans[i-1]-d1[i];
      if (abs(t1-ans[i-2])==find(i-2, i)) ans[i]=t1;
      else ans[i]=t2;
   }
   ans.erase(ans.begin());
   int mn=*min_element(ans.begin(), ans.end());
   for (int &i:ans) i-=mn-1;
   answer(ans);
}
컴파일 시 표준 에러 (stderr) 메시지
| # | Verdict | Execution time | Memory | Grader output | 
|---|---|---|---|---|
| Fetching results... | ||||
| # | Verdict | Execution time | Memory | Grader output | 
|---|---|---|---|---|
| Fetching results... | ||||
| # | Verdict | Execution time | Memory | Grader output | 
|---|---|---|---|---|
| Fetching results... | ||||
