Submission #830631

# Submission time Handle Problem Language Result Execution time Memory
830631 2023-08-19T08:44:57 Z Shithila Sorting (IOI15_sorting) C++14
Compilation error
0 ms 0 KB
#include "sorting.h"
#include <bits/stdc++.h>
using namespace std;
int findSwapPairs(int N, int s[], int M, int X[], int Y[], int P[], int Q[]) {
  int pos[N];
  int ind=0;
  for(int i=0;i<N;i++) pos[s[i]]=i;
  int k;
  if(s[0]==0 && s[1]==1)
  {
     ind=0;
  }
  else if(s[0]==0)
  {
     k=s[0];
      pos[s[0]]=1;
      pos[s[1]]=0;
      s[0]=s[1];
      s[1]=k;
    P[ind]=1;
    Q[ind]=pos[1];
    int x=pos[1];
    pos[1]=1;
    pos[s[1]]=x;
    s[x]=s[1];
    s[1]=1;
    ind++;
  }
  else if(s[1]==1)
  {
     k=s[0];
      pos[s[0]]=1;
      pos[s[1]]=0;
      s[0]=s[1];
      s[1]=k;
      P[ind]=0;
      Q[ind]=pos[0];
      int x=pos[0];
      pos[0]=0;
      pos[s[0]]=x;
      s[x]=s[0];
      s[0]=0;
      ind++;
  }
  else
  {
     k=s[0];
      pos[s[0]]=1;
      pos[s[1]]=0;
      s[0]=s[1];
      s[1]=k;
    P[ind]=0;
    Q[ind]=pos[0];
    int x=pos[0];
    pos[0]=0;
    pos[s[0]]=x;
    s[x]=s[0];
    s[0]=0;
    ind++;
     k=s[0];
      pos[s[0]]=1;
      pos[s[1]]=0;
      s[0]=s[1];
      s[1]=k;
    P[ind]=0;
    Q[ind]=pos[1];
    int x=pos[1];
    pos[1]=0;
    pos[s[0]]=x;
    s[x]=s[0];
    s[0]=1;
    ind++;
  }
  for(int i=2;i<N;i++)
  {
    //ind++;
    int k=s[0];
      pos[s[0]]=1;
      pos[s[1]]=0;
      s[0]=s[1];
      s[1]=k;
    if(i==s[i]) continue;
  
      P[ind]=i;
      Q[ind]=pos[i];
      int x=pos[i];
      pos[i]=i;
      pos[s[i]]=x;
      s[x]=s[i];
      s[i]=i;
      ind++;
    
      
    }
    if(s[0]!=0)
    {
      ind++;
    P[ind]=0;
    Q[ind]=1;
    }
    return ind;
}

Compilation message

sorting.cpp: In function 'int findSwapPairs(int, int*, int, int*, int*, int*, int*)':
sorting.cpp:67:9: error: redeclaration of 'int x'
   67 |     int x=pos[1];
      |         ^
sorting.cpp:54:9: note: 'int x' previously declared here
   54 |     int x=pos[0];
      |         ^
sorting.cpp:77:9: warning: declaration of 'k' shadows a previous local [-Wshadow]
   77 |     int k=s[0];
      |         ^
sorting.cpp:8:7: note: shadowed declaration is here
    8 |   int k;
      |       ^
sorting.cpp:4:39: warning: unused parameter 'M' [-Wunused-parameter]
    4 | int findSwapPairs(int N, int s[], int M, int X[], int Y[], int P[], int Q[]) {
      |                                   ~~~~^
sorting.cpp:4:46: warning: unused parameter 'X' [-Wunused-parameter]
    4 | int findSwapPairs(int N, int s[], int M, int X[], int Y[], int P[], int Q[]) {
      |                                          ~~~~^~~
sorting.cpp:4:55: warning: unused parameter 'Y' [-Wunused-parameter]
    4 | int findSwapPairs(int N, int s[], int M, int X[], int Y[], int P[], int Q[]) {
      |                                                   ~~~~^~~