Submission #886953

#TimeUsernameProblemLanguageResultExecution timeMemory
886953artixkrishnaArranging Shoes (IOI19_shoes)C++14
Compilation error
0 ms0 KiB
#include "shoes.h"
#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
typedef vector<int> vi;
#define REP(i,a,b) for(int i=a; i<b; i++)

ll count_swaps(vector<int> a){
        ll swaps=0;
        bool correct=false;
        while(!correct){
                ll d=0; ll e=1;
                for(ll i=1; i<(int)a.size()/2; i++){
                        if(a[d]== -a[e]){
                                correct=true; d+=1; e+=1;continue;
                        }else{
                        correct=false;
                        ll b=a[e];
                        ll c=a[d];
                        a[e]=c;
                        a[d]=b;d+=2;e+=2;
                        swaps+=1;
                        }
                }
        }
        return swaps;
}

int main(){
        cout<<count_swaps([-2, 2, 2, -2,-2,2]);
}

Compilation message (stderr)

shoes.cpp: In function 'int main()':
shoes.cpp:30:28: error: expected identifier before '-' token
   30 |         cout<<count_swaps([-2, 2, 2, -2,-2,2]);
      |                            ^
shoes.cpp:30:30: error: expected ']' before ',' token
   30 |         cout<<count_swaps([-2, 2, 2, -2,-2,2]);
      |                              ^
      |                              ]
shoes.cpp: In lambda function:
shoes.cpp:30:30: error: expected '{' before ',' token
shoes.cpp: In function 'int main()':
shoes.cpp:30:45: error: expected ')' before ']' token
   30 |         cout<<count_swaps([-2, 2, 2, -2,-2,2]);
      |                          ~                  ^
      |                                             )