Submission #197394

#TimeUsernameProblemLanguageResultExecution timeMemory
197394Ahmed_SelimArranging Shoes (IOI19_shoes)C++14
Compilation error
0 ms0 KiB
#include <iostream> #include <cstring> #include <vector> #include <set> #include <algorithm> #define MOD 1000000007 using namespace std; long long int cvp, n; vector<int> konum[2][200010]; long long int count_swaps(int[] S){ for (n = 0; S[n] ; ++n){ if(S[n]<0)konum[1][S[n]].push_back(n); else konum[0][S[n]].push_back(n); } for (int i = 0; i < n; i+=2){ if(S[i]<0){ int j=0; while(konum[0][S[i]][j]<0)j++; int index=konum[0][S[i]][j]; while(index!=i+1){ swap(S[index], S[index-1]); cvp++; } konum[0][S[i]][j]=-1; }else{ int j=0; while(konum[0][S[i]][j]<0)j++; int index=konum[0][S[i]][j]; while(index!=i+1){ swap(S[index], S[index-1]); cvp++; } konum[0][S[i]][j]=-1; cvp++; } } return cvp; }

Compilation message (stderr)

shoes.cpp:12:33: error: expected ',' or '...' before 'S'
 long long int count_swaps(int[] S){
                                 ^
shoes.cpp: In function 'long long int count_swaps(int*)':
shoes.cpp:13:14: error: 'S' was not declared in this scope
  for (n = 0; S[n] ; ++n){
              ^
shoes.cpp:18:6: error: 'S' was not declared in this scope
   if(S[i]<0){
      ^