Submission #499975

#TimeUsernameProblemLanguageResultExecution timeMemory
499975uHyHnArranging Shoes (IOI19_shoes)C++14
50 / 100
1062 ms3880 KiB
#include <bits/stdc++.h> #include "shoes.h" using namespace std; long long count_swaps(std::vector<int> s) { vector <int> v; v=s; int n=s.size(); //cout << n << " "; if (n/2 == 1){ if (v[0] < v[1]) return 0; else return 1; } long long ans=0; for (int i=0;i<n;i+=2){ if (v[i] > 0){ for (int j=i+1;j<n;j++){ if (-v[j] == v[i]){ for (int j1=j-1;j1>=i;j1--) swap(v[j1], v[j1+1]), ans++; break; } } } else { for (int j=i+1;j<n;j++){ if (-v[j] == v[i]){ for (int j1=j-1;j1>i;j1--) swap(v[j1], v[j1+1]), ans++; break; } } } } bool ok=1; for (int i=0;i<n/2;i++){ if (v[(n/2)+i]+v[i] == 0 and v[i] < 0); else{ ok=0; break; } } return ans; }

Compilation message (stderr)

shoes.cpp: In function 'long long int count_swaps(std::vector<int>)':
shoes.cpp:38:10: warning: variable 'ok' set but not used [-Wunused-but-set-variable]
   38 |     bool ok=1;
      |          ^~
#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...