Submission #476808

#TimeUsernameProblemLanguageResultExecution timeMemory
476808ponytailArranging Shoes (IOI19_shoes)C++17
10 / 100
1103 ms427648 KiB
#include <bits/stdc++.h> using namespace std; const int MAXN = 1e5 + 5; typedef long long ll; int n; int inv(int x){ if(x<0) return -x; else if(x>n) return x - n; else return x + n; } mt19937 rng((int)std::chrono::steady_clock::now().time_since_epoch().count()); ll alt_sol(vector<int> S) { map<vector<int>, int> vis; map<vector<int>, int> dist; dist[S] = 0; vector<int> T = S; sort(S.begin(), S.end()); do { if(S != T) dist[S] = 1e9; } while(next_permutation(S.begin(), S.end())); queue<vector<int> > q; q.push(T); while(q.size()) { vector<int> f = q.front(); q.pop(); vector<int> og = f; if(vis[f]) continue; vis[f] = 1; for(int i=1; i<f.size(); i++) { swap(f[i-1], f[i]); if(!vis[f] && dist[f] > dist[og] + 1) { dist[f] = dist[og] + 1; q.push(f); } swap(f[i-1], f[i]); } } int ans = 1e9; for(auto x : dist) { int wow = x.first.size() / 2; bool ok = 1; for(int i=0; i<wow; i++) { if(x.first[2*i] > 0 || x.first[2*i+1] < 0) ok = 0; } if(ok) { ans = min(ans, x.second); } } return ans; } ll count_swaps(vector<int> S) { return alt_sol(S); }

Compilation message (stderr)

shoes.cpp: In function 'll alt_sol(std::vector<int>)':
shoes.cpp:29:23: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
   29 |         for(int i=1; i<f.size(); i++) {
      |                      ~^~~~~~~~~
#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...