Submission #299478

#TimeUsernameProblemLanguageResultExecution timeMemory
299478HideoSorting (IOI15_sorting)C++17
100 / 100
283 ms22424 KiB
#include "sorting.h" //#include "grader.cpp" #include <bits/stdc++.h> using namespace std; #define ll long long #define all(s) s.begin(), s.end() #define pb push_back #define fr first #define sc second #define vi vector < int > #define pi pair < int, int > const int MN = 6e5 + 7; vector < pi > sw, out; int a[MN], b[MN], r[MN]; int x[MN], y[MN]; int n, m; bool check (int k){ for (int i = 0; i < n; i++) a[i] = b[i]; for (int i = 0; i < k; i++) swap(a[x[i]], a[y[i]]); for (int i = 0; i < n; i++) r[a[i]] = i; vector < pi > kek; for (int i = 0; i < n; i++){ int it = i; while (it != a[it]){ int x = it, y = a[it]; it = a[it]; kek.pb({x, y}); swap(a[r[x]], a[r[y]]); swap(r[x], r[y]); } } for (int i = 0; i < n; i++){ int it = i; while (it != a[it]){ int x = it, y = a[it]; it = a[it]; kek.pb({x, y}); swap(a[r[x]], a[r[y]]); swap(r[x], r[y]); } } if (kek.size() <= k) sw = kek; return kek.size() <= k; } void simulate (int k){ while (sw.size() != k) sw.pb({0, 0}); for (int i = 0; i < n; i++){ a[i] = b[i]; r[a[i]] = i; } for (int i = 0; i < k; i++){ swap(r[a[x[i]]], r[a[y[i]]]); swap(a[x[i]], a[y[i]]); int v = r[sw[i].fr], u = r[sw[i].sc]; out.pb({v, u}); swap(r[a[v]], r[a[u]]); swap(a[v], a[u]); } } int findSwapPairs(int N, int S[], int M, int X[], int Y[], int P[], int Q[]) { n = N; m = M; bool sorted = true; for (int i = 0; i < n; i++){ b[i] = S[i]; if (b[i] != i) sorted = false; } if (sorted) return 0; for (int i = 0; i < m; i++){ x[i] = X[i]; y[i] = Y[i]; } int lf = 0, rg = M + 1; while (lf + 1 < rg){ int mid = (lf + rg) >> 1; if (check(mid)) rg = mid; else lf = mid; } simulate(rg); for (int i = 0; i < out.size(); i++){ P[i] = out[i].fr; Q[i] = out[i].sc; } return rg; }

Compilation message (stderr)

sorting.cpp: In function 'bool check(int)':
sorting.cpp:33:17: warning: declaration of 'x' shadows a global declaration [-Wshadow]
   33 |             int x = it, y = a[it];
      |                 ^
sorting.cpp:19:5: note: shadowed declaration is here
   19 | int x[MN], y[MN];
      |     ^
sorting.cpp:33:25: warning: declaration of 'y' shadows a global declaration [-Wshadow]
   33 |             int x = it, y = a[it];
      |                         ^
sorting.cpp:19:12: note: shadowed declaration is here
   19 | int x[MN], y[MN];
      |            ^
sorting.cpp:43:17: warning: declaration of 'x' shadows a global declaration [-Wshadow]
   43 |             int x = it, y = a[it];
      |                 ^
sorting.cpp:19:5: note: shadowed declaration is here
   19 | int x[MN], y[MN];
      |     ^
sorting.cpp:43:25: warning: declaration of 'y' shadows a global declaration [-Wshadow]
   43 |             int x = it, y = a[it];
      |                         ^
sorting.cpp:19:12: note: shadowed declaration is here
   19 | int x[MN], y[MN];
      |            ^
sorting.cpp:50:20: warning: comparison of integer expressions of different signedness: 'std::vector<std::pair<int, int> >::size_type' {aka 'long unsigned int'} and 'int' [-Wsign-compare]
   50 |     if (kek.size() <= k)
      |         ~~~~~~~~~~~^~~~
sorting.cpp:52:23: warning: comparison of integer expressions of different signedness: 'std::vector<std::pair<int, int> >::size_type' {aka 'long unsigned int'} and 'int' [-Wsign-compare]
   52 |     return kek.size() <= k;
      |            ~~~~~~~~~~~^~~~
sorting.cpp: In function 'void simulate(int)':
sorting.cpp:56:22: warning: comparison of integer expressions of different signedness: 'std::vector<std::pair<int, int> >::size_type' {aka 'long unsigned int'} and 'int' [-Wsign-compare]
   56 |     while (sw.size() != k)
      |            ~~~~~~~~~~^~~~
sorting.cpp: In function 'int findSwapPairs(int, int*, int, int*, int*, int*, int*)':
sorting.cpp:95:23: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<std::pair<int, int> >::size_type' {aka 'long unsigned int'} [-Wsign-compare]
   95 |     for (int i = 0; i < out.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...