# | Submission time | Handle | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
74202 | 2018-08-30T12:55:09 Z | nvmdava | Ancient Books (IOI17_books) | C++17 | 2 ms | 500 KB |
#include "books.h" #include <bits/stdc++.h> using namespace std; int r = 0; vector<int> p; bool in[1000001]; void go(int v){ if(in[v] == 1){ return; } in[v] = 1; r = max(r, v); go(p[v]); } long long minimum_walk(vector<int> p, int s) { ::p = p; int q = 0; long long ans = 0; for(int i = 0; i < p.size(); i++){ ans += (long long)abs(i - p[i]); if(in[i] || p[i] == i) continue; if(r < i){ ans += i - r; } go(i); } return ans; }
Compilation message
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Incorrect | 2 ms | 256 KB | 3rd lines differ - on the 1st token, expected: '6', found: '5' |
2 | Halted | 0 ms | 0 KB | - |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Incorrect | 2 ms | 256 KB | 3rd lines differ - on the 1st token, expected: '6', found: '5' |
2 | Halted | 0 ms | 0 KB | - |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Incorrect | 2 ms | 256 KB | 3rd lines differ - on the 1st token, expected: '6', found: '5' |
2 | Halted | 0 ms | 0 KB | - |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Incorrect | 2 ms | 500 KB | 3rd lines differ - on the 1st token, expected: '3304', found: '2744' |
2 | Halted | 0 ms | 0 KB | - |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Incorrect | 2 ms | 256 KB | 3rd lines differ - on the 1st token, expected: '6', found: '5' |
2 | Halted | 0 ms | 0 KB | - |