Submission #1080960

# Submission time Handle Problem Language Result Execution time Memory
1080960 2024-08-29T16:20:47 Z Trumling Sorting (IOI15_sorting) C++14
Compilation error
0 ms 0 KB
#include "sorting.h"
#include<bits/stdc++.h>
using namespace std;
     
#define F first
#define S second
#define pb push_back
#define all(x) x.begin(),x.end()
#define INF 9999999999999999
typedef long long ll;
ll n;

int findSwapPairs(int N, int Se[], int M, int X[], int Y[], int P[], int Q[]) 
{ 
	n=N;

	for(int i=0;i<N;i++)
		for(int j=0;j<N;j++)
			if(Se[j]==i)
			{

			P[i]=min(j,i);
			Q[i]=max(i,j);
			swap(Se[j],Se[i]);
			}

	return N;
		

Compilation message

sorting.cpp: In function 'int findSwapPairs(int, int*, int, int*, int*, int*, int*)':
sorting.cpp:27:10: error: expected '}' at end of input
   27 |  return N;
      |          ^
sorting.cpp:14:1: note: to match this '{'
   14 | {
      | ^
sorting.cpp:13:40: warning: unused parameter 'M' [-Wunused-parameter]
   13 | int findSwapPairs(int N, int Se[], int M, int X[], int Y[], int P[], int Q[])
      |                                    ~~~~^
sorting.cpp:13:47: warning: unused parameter 'X' [-Wunused-parameter]
   13 | int findSwapPairs(int N, int Se[], int M, int X[], int Y[], int P[], int Q[])
      |                                           ~~~~^~~
sorting.cpp:13:56: warning: unused parameter 'Y' [-Wunused-parameter]
   13 | int findSwapPairs(int N, int Se[], int M, int X[], int Y[], int P[], int Q[])
      |                                                    ~~~~^~~