제출 #800394

#제출 시각아이디문제언어결과실행 시간메모리
800394Dan4Life정렬하기 (IOI15_sorting)C++17
20 / 100
1 ms468 KiB
#include "sorting.h" #include <bits/stdc++.h> using namespace std; const int mxN = (int)2e5+10; int n, tot, a[mxN], t[mxN], x[mxN], y[mxN], pos[mxN], vis[mxN]; void swp(int i, int j, int P[], int Q[], bool ok=0){ if(i==j) return; if(ok) P[tot]=i, Q[tot]=j, tot++; swap(pos[a[i]],pos[a[j]]); swap(a[i],a[j]); } int chk(int m, int P[], int Q[]){ for(int i = 0; i < n; i++) a[i] = t[i], vis[i]=0, pos[a[i]] = i; for(int i = 0; i < m; i++) swp(x[i],y[i],P,Q), P[i]=Q[i]=0; tot = 0; fill(vis,vis+n,0); for(int i = 0; i < n; i++){ if(a[i]==i) continue; int j = i; vector<int> v; v.clear(); while(!vis[a[j]]) v.push_back(j), vis[a[j]] = 1, j = pos[j]; for(int i = 0; i < (int)v.size()-1; i++) swp(v[i],v[i+1],P,Q,1); } return (tot<=m)?m:mxN; } int findSwapPairs(int N, int A[], int m, int X[], int Y[], int P[], int Q[]) { n = N; if(is_sorted(A,A+n)) return 0; for(int i = 0; i < n; i++){ a[i] = t[i] = A[i]; x[i] = X[i], y[i] = Y[i]; } int l = 0, r = n; while(l<r){ int mid = (l+r)/2; if(chk(mid,P,Q)<=mid) r=mid; else l=mid+1; } return chk(l,P,Q); }

컴파일 시 표준 에러 (stderr) 메시지

sorting.cpp: In function 'int chk(int, int*, int*)':
sorting.cpp:18:3: warning: this 'if' clause does not guard... [-Wmisleading-indentation]
   18 |   if(a[i]==i) continue; int j = i; vector<int> v; v.clear();
      |   ^~
sorting.cpp:18:25: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the 'if'
   18 |   if(a[i]==i) continue; int j = i; vector<int> v; v.clear();
      |                         ^~~
sorting.cpp:20:11: warning: declaration of 'i' shadows a previous local [-Wshadow]
   20 |   for(int i = 0; i < (int)v.size()-1; i++) swp(v[i],v[i+1],P,Q,1);
      |           ^
sorting.cpp:17:13: note: shadowed declaration is here
   17 |     for(int i = 0; i < n; i++){
      |             ^
sorting.cpp: In function 'int findSwapPairs(int, int*, int, int*, int*, int*, int*)':
sorting.cpp:25:39: warning: unused parameter 'm' [-Wunused-parameter]
   25 | int findSwapPairs(int N, int A[], int m, int X[], int Y[], int P[], int Q[]) {
      |                                   ~~~~^
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...