답안 #1061425

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
1061425 2024-08-16T08:57:03 Z Zicrus 고대 책들 (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 = -1;
    for (int i = 0; i < n; i++) {
        if (vst[i]) continue;
        numCyc++;
 
        ll cur = i;
        do {
            cur = p[cur];
            vst[cur] = true;
        } while (cur != i);
    }

    return base + 2*numCyc;
}
# 결과 실행 시간 메모리 Grader output
1 Correct 0 ms 348 KB Output is correct
2 Incorrect 0 ms 348 KB 3rd lines differ - on the 1st token, expected: '6', found: '8'
3 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Correct 0 ms 348 KB Output is correct
2 Incorrect 0 ms 348 KB 3rd lines differ - on the 1st token, expected: '6', found: '8'
3 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Correct 0 ms 348 KB Output is correct
2 Incorrect 0 ms 348 KB 3rd lines differ - on the 1st token, expected: '6', found: '8'
3 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 0 ms 348 KB 3rd lines differ - on the 1st token, expected: '3304', found: '4186'
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Correct 0 ms 348 KB Output is correct
2 Incorrect 0 ms 348 KB 3rd lines differ - on the 1st token, expected: '6', found: '8'
3 Halted 0 ms 0 KB -