Submission #745628

#TimeUsernameProblemLanguageResultExecution timeMemory
745628Dan4LifeSorting (IOI15_sorting)C++17
20 / 100
2 ms340 KiB
#include "sorting.h"
#include <bits/stdc++.h>
using namespace std;
const int mxN = (int)2e5+10;
int n, m, a[mxN], pos[mxN];

void swp(int a[], int i, int j){
    if(i==j) return;
    swap(pos[a[i]],pos[a[j]]), swap(a[i],a[j]);
}

int findSwapPairs(int N, int a[], int M, int x[], int y[], int P[], int Q[]) {
    n = N, m = M;
    if(is_sorted(a,a+n)) return 0;
    for(int i = 0; i < n; i++) pos[a[i]] = i;
    for(int i = 0; i < m; i++) swp(a,x[i],y[i]),P[i]=Q[i]=0;
    for(int i = 0; i < n; i++){
        if(pos[i]==i) continue;
        P[i] = i, Q[i] = pos[i];
        swp(a,i,pos[i]);
    }
    for(int i = 0; i < m; i++) swp(a,x[i],y[i]), swp(a,P[i],Q[i]);
    for(int i = 0; i < m; i++){
        if(is_sorted(a,a+n)) return i;
        swp(a,x[i],y[i]);
        if(is_sorted(a,a+n)){ P[i]=Q[i]=0; return i+1; }
        swp(a,P[i],Q[i]);
    }
	return m;
}

Compilation message (stderr)

sorting.cpp: In function 'void swp(int*, int, int)':
sorting.cpp:7:14: warning: declaration of 'a' shadows a global declaration [-Wshadow]
    7 | void swp(int a[], int i, int j){
      |          ~~~~^~~
sorting.cpp:5:11: note: shadowed declaration is here
    5 | int n, m, a[mxN], pos[mxN];
      |           ^
sorting.cpp: In function 'int findSwapPairs(int, int*, int, int*, int*, int*, int*)':
sorting.cpp:12:30: warning: declaration of 'a' shadows a global declaration [-Wshadow]
   12 | int findSwapPairs(int N, int a[], int M, int x[], int y[], int P[], int Q[]) {
      |                          ~~~~^~~
sorting.cpp:5:11: note: shadowed declaration is here
    5 | int n, m, a[mxN], pos[mxN];
      |           ^
#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...