Submission #1061435

# Submission time Handle Problem Language Result Execution time Memory
1061435 2024-08-16T09:01:51 Z Zicrus Ancient Books (IOI17_books) C++17
0 / 100
0 ms 348 KB
#include <bits/stdc++.h>
#include "books.h"
using namespace std;

typedef long long ll;

ll minimum_walk(vector<int> p, int s) {
    ll n = p.size();
	ll base = 0;
    for (int i = 0; i < n; i++) base += abs(p[i] - i);

    vector<bool> vst(n);
    ll numCyc = 0;
    for (int i = 0; i < n; i++) {
        if (vst[i] || p[i] == i) continue;
        numCyc++;
 
        ll cur = i;
        do {
            cur = p[cur];
            vst[cur] = true;
        } while (cur != i);
    }

    return base + 2*max(0ll, numCyc-1);
}
# Verdict Execution time Memory Grader output
1 Incorrect 0 ms 348 KB 3rd lines differ - on the 1st token, expected: '6', found: '4'
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 0 ms 348 KB 3rd lines differ - on the 1st token, expected: '6', found: '4'
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 0 ms 348 KB 3rd lines differ - on the 1st token, expected: '6', found: '4'
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 0 ms 348 KB 3rd lines differ - on the 1st token, expected: '3304', found: '3106'
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 0 ms 348 KB 3rd lines differ - on the 1st token, expected: '6', found: '4'
2 Halted 0 ms 0 KB -