제출 #613774

#제출 시각아이디문제언어결과실행 시간메모리
613774drdilyor고대 책들 (IOI17_books)C++17
12 / 100
1 ms212 KiB
#include <bits/stdc++.h>
#include "books.h"
#ifdef ONPC
    #include "t_debug.cpp"
#else
    #define debug(...) 42
#endif
#define sz(a) ((int)(a).size())
using namespace std;
using ll = long long;
const int INF = 1e9;
const ll INFL = 1e18;
const int RANDOM = chrono::high_resolution_clock::now().time_since_epoch().count();
mt19937 rng(RANDOM);
template<typename T, typename U> istream& operator>>(istream& is, pair<T, U>& p) { return is >> p.first >> p.second; }
const int N = 2e5, LOGN = 17, MOD = 1e9+7;

long long minimum_walk(std::vector<int> p, int s) {
    int n = sz(p);
    vector<vector<int>> cycles;
    vector<pair<int,int>> range;
    vector<int> done(n);
    int distance = 0;
    int mnstart = -1;
    for (int i = 0; i < n; i++) {
        distance += abs(p[i] - i);
        if (done[i]) continue;
        if (p[i] == i) continue;
        done[i] = true;
        if (mnstart==-1) mnstart =i;
        cycles.push_back({i});
        for (int cur = p[i]; !done[cur]; cur = p[cur]) {
            cycles.back().push_back(cur);
            done[cur] = true;
        }
    }

    int k = sz(cycles);
    if (!k) return 0;

    for (int i = 0; i < k; i++) {
        int l = INF, r = 0;
        for (int i : cycles[i]) {
            l = min(l, i);
            r = max(r, i);
        }
        range.emplace_back(l, r);
    }

    int disjoint = n-1;
    for (int i = 0; i < n-1; i++) {
        bool yes = true;
        for (auto[l,r ]: range) {
            yes |= (l <= i && i < r);
        }
        disjoint -= yes;
    }

    int waste = (disjoint) * 2;
    debug(cycles, range);
    debug(waste,disjoint);

    return distance + (mnstart == -1 ? 0 : mnstart * 2) + waste;
}

컴파일 시 표준 에러 (stderr) 메시지

books.cpp: In function 'long long int minimum_walk(std::vector<int>, int)':
books.cpp:6:24: warning: statement has no effect [-Wunused-value]
    6 |     #define debug(...) 42
      |                        ^~
books.cpp:60:5: note: in expansion of macro 'debug'
   60 |     debug(cycles, range);
      |     ^~~~~
books.cpp:6:24: warning: statement has no effect [-Wunused-value]
    6 |     #define debug(...) 42
      |                        ^~
books.cpp:61:5: note: in expansion of macro 'debug'
   61 |     debug(waste,disjoint);
      |     ^~~~~
#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...