Submission #921027

# Submission time Handle Problem Language Result Execution time Memory
921027 2024-02-03T09:00:43 Z salmon Ancient Books (IOI17_books) C++14
0 / 100
1 ms 1524 KB

#include <cstdio>
#include <vector>
#include <bits/stdc++.h>
using namespace std;

long long minimum_walk(vector<int> p, int s) {
    bool done[1100100];
    int N = p.size();

    int un = N;
    int soom = 0;

    int i = 0;

    /*while(un != 0){
        if(start )
    }*/
    int fre = 0;


    for(int i = 0; i < N; i++){
        if(done[i]) continue;

        if(i > fre){
            soom += 2;
        }
        else{
            if(i == p[i] && i != 0){
                soom += 2;
            }
        }

        fre = i;
        int j = p[i];
        soom += abs(j - i);
        while(j != i){
            int temp = j;
            fre = max(fre,j);
            done[j] = true;
            j = p[j];
            soom += abs(temp - j);
        }
    }

    for(int i = N - 1; i > 0; i--){
        if(p[i] != i){
            break;
        }
        soom -= 2;
    }



    return soom;
}

Compilation message

books.cpp: In function 'long long int minimum_walk(std::vector<int>, int)':
books.cpp:12:9: warning: unused variable 'un' [-Wunused-variable]
   12 |     int un = N;
      |         ^~
books.cpp:15:9: warning: unused variable 'i' [-Wunused-variable]
   15 |     int i = 0;
      |         ^
# Verdict Execution time Memory Grader output
1 Correct 1 ms 1368 KB Output is correct
2 Incorrect 1 ms 1372 KB 3rd lines differ - on the 1st token, expected: '6', found: '8'
3 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Correct 1 ms 1368 KB Output is correct
2 Incorrect 1 ms 1372 KB 3rd lines differ - on the 1st token, expected: '6', found: '8'
3 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Correct 1 ms 1368 KB Output is correct
2 Incorrect 1 ms 1372 KB 3rd lines differ - on the 1st token, expected: '6', found: '8'
3 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 1 ms 1524 KB 3rd lines differ - on the 1st token, expected: '3304', found: '4144'
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Correct 1 ms 1368 KB Output is correct
2 Incorrect 1 ms 1372 KB 3rd lines differ - on the 1st token, expected: '6', found: '8'
3 Halted 0 ms 0 KB -