Submission #620909

#TimeUsernameProblemLanguageResultExecution timeMemory
620909mdn2002Sorting (IOI15_sorting)C++14
16 / 100
10 ms4932 KiB
#include "sorting.h" #include<bits/stdc++.h> using namespace std; int n , m , a [502] , x [20004] , y [20004] , dis [502][20004]; int findSwapPairs(int N, int S[], int M, int X[], int Y[], int P[], int Q[]) { n = N; for ( int i = 1 ; i <= n ; i ++ ) { a [i] = S [ i - 1 ]; a [i] ++; } m = M; for ( int i = 0 ; i < m ; i ++ ) { x [i] = X [i] , y [i] = Y [i]; x [i] ++ , y [i] ++; } for ( int i = 1 ; i <= n ; i ++ ) dis [i][m] = i; for ( int j = m - 1 ; j >= 0 ; j -- ) { for ( int i = 1 ; i <= n ; i ++ ) dis [i][j] = dis [i][ j + 1 ]; swap ( dis [ x [j] ][j] , dis [ y [j] ][j] ); } int r = 0; for ( int i = 1 ; i <= m ; i ++ ) { swap ( a [ x [ i - 1 ] ] , a [ y [ i - 1 ] ] ); P [ i - 1 ] = -1 , Q [ i - 1 ] = -1; for ( int j = 1 ; j <= n ; j ++ ) { if ( dis [j][i] != a [j] ) { int wr; for ( int z = 1 ; z <= n ; z ++ ) { if ( a [z] == dis [j][i] ) { wr = z; break; } } P [ i - 1 ] = j - 1 , Q [ i - 1 ] = wr - 1; swap ( a [j] , a [wr] ); r ++; break; } } if ( P [ i - 1 ] == -1 ) { P [ i - 1 ] = 0; Q [ i - 1 ] = 0; r ++; } if ( P [ i - 1 ] > Q [ i - 1 ] ) swap ( P [ i - 1 ] , Q [ i - 1 ] ); } return r; }
#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...