Submission #766915

#TimeUsernameProblemLanguageResultExecution timeMemory
766915danikoynovAncient Books (IOI17_books)C++14
0 / 100
1 ms340 KiB
#include "books.h" #include<bits/stdc++.h> using namespace std; typedef long long ll; const int maxn = 1e6 + 10; int used[maxn], n; long long minimum_walk(vector<int> p, int s) { n = p.size(); int cnt = 0; ll mx = 0, ans = 0; for (int i = 0; i < n; i ++) { if (p[i] == i) continue; ans = ans + (ll)abs(i - p[i]); ///cout << ans << endl; if (!used[i]) { mx = i; int v = p[i]; while(v != i) { used[v] = 1; v = p[v]; } used[v] = 1; } } return ans + 2 * mx; }

Compilation message (stderr)

books.cpp: In function 'long long int minimum_walk(std::vector<int>, int)':
books.cpp:15:9: warning: this 'if' clause does not guard... [-Wmisleading-indentation]
   15 |         if (p[i] == i)
      |         ^~
books.cpp:17:13: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the 'if'
   17 |             ans = ans + (ll)abs(i - p[i]);
      |             ^~~
books.cpp:11:9: warning: unused variable 'cnt' [-Wunused-variable]
   11 |     int cnt = 0;
      |         ^~~
#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...