Submission #670608

#TimeUsernameProblemLanguageResultExecution timeMemory
670608birthdaycakeArranging Shoes (IOI19_shoes)C++17
10 / 100
36 ms3540 KiB
#include<bits/stdc++.h> #include "shoes.h" using namespace std; int vs[1001]; long long count_swaps(vector<int>s) { long long n = s.size(); long long ans = 0; for(long long i = 0; i < n; i++){ long long f = 0; for(long long j = 0; j < i; j++){ if(!vs[j] && s[i] == -s[j]){ f = j + 1; break; } } if(f){ f--; long long j = i; vs[f] = vs[f + 1] = 1; while(j != f + 1){ swap(vs[j], vs[j - 1]); swap(s[j], s[j - 1]); j--; ans++; } if(s[f] > 0) { swap(s[f], s[f + 1]); ans++; } } } return ans; }
#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...