제출 #321291

#제출 시각아이디문제언어결과실행 시간메모리
321291VROOM_VARUN고대 책들 (IOI17_books)C++14
100 / 100
225 ms26724 KiB
/*
ID: varunra2
LANG: C++
TASK: books
*/

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

#ifdef DEBUG
#include "lib/debug.h"
#define debug(...) cerr << "[" << #__VA_ARGS__ << "]:", debug_out(__VA_ARGS__)
#define debug_arr(...) \
  cerr << "[" << #__VA_ARGS__ << "]:", debug_arr(__VA_ARGS__)
#pragma GCC diagnostic ignored "-Wsign-compare"
//#pragma GCC diagnostic ignored "-Wunused-parameter"
//#pragma GCC diagnostic ignored "-Wunused-variable"
#else
#define debug(...) 42
#endif

#define EPS 1e-9
#define IN(A, B, C) assert(B <= A && A <= C)
#define INF (int)1e9
#define MEM(a, b) memset(a, (b), sizeof(a))
#define MOD 1000000007
#define MP make_pair
#define PB push_back
#define all(cont) cont.begin(), cont.end()
#define rall(cont) cont.end(), cont.begin()
#define x first
#define y second

const double PI = acos(-1.0);
typedef long long ll;
typedef long double ld;
typedef pair<int, int> PII;
typedef map<int, int> MPII;
typedef multiset<int> MSETI;
typedef set<int> SETI;
typedef set<string> SETS;
typedef vector<int> VI;
typedef vector<PII> VII;
typedef vector<VI> VVI;
typedef vector<string> VS;

#define rep(i, a, b) for (int i = a; i < (b); ++i)
#define trav(a, x) for (auto& a : x)
#define sz(x) (int)(x).size()
typedef pair<int, int> pii;
typedef vector<int> vi;
#pragma GCC diagnostic ignored "-Wsign-compare"
// util functions

int s;
int n;
int targl, targr;
int cycs = 0;
VI wcyc;
VI lcyc;
VI rcyc;
ll retgood = 0;
ll retbad = 0;

void init(VI& order) {
  n = sz(order);
  targl = s;
  targr = s;
  wcyc.assign(n, -1);
  lcyc.resize(n);
  rcyc.resize(n);
}

void extend(int& l, int& r) {
  // can we move l or r?
  int nl, nr;
  nl = min(lcyc[wcyc[l]], lcyc[wcyc[r]]);
  nr = max(rcyc[wcyc[l]], rcyc[wcyc[r]]);

  while (nl < l or nr > r) {
    if (l > nl) {
      l--;
      nl = min(nl, lcyc[wcyc[l]]);
      nr = max(nr, rcyc[wcyc[l]]);
    } else {
      r++;
      nl = min(nl, lcyc[wcyc[r]]);
      nr = max(nr, rcyc[wcyc[r]]);
    }
  }
}

ll solve() {
  int l = s, r = s;
  do {
    debug(l, r, targl, targr);
    // debug(l, r, targl, targr);
    extend(l, r);
    // debug(l, r, targl, targr);

    int costl = 0, costr = 0, ll = l, lr = r, rl = l, rr = r;
    bool next1 = false;
    bool next2 = false;
    while (true) {
      if (ll <= targl) break;
      ll--;
      extend(ll, lr);
      costl += 2;
      if (lr > r) {
        next1 = true;
        break;
      }
    }

    while (true) {
      if (rr >= targr) break;
      rr++;
      extend(rl, rr);
      costr += 2;
      if (rl < l) {
        next2 = true;
        break;
      }
    }

    assert(next1 == next2);

    if (next1 and next2)
      retbad += min(costl, costr);
    else
      retbad += (costl + costr);

    l = min(ll, rl);
    r = max(rr, lr);
    debug(l, r, targl, targr);
    debug(costl, costr);
  } while (l > targl or r < targr);
  debug(retbad);
  return retbad;
}

ll minimum_walk(VI order, int s) {
  ::s = s;
  init(order);
  for (int i = 0; i < n; i++) {
    retgood += abs(i - order[i]);
    if (wcyc[i] != -1) continue;
    int pos = i;
    lcyc[cycs] = i;
    rcyc[cycs] = i;
    do {
      wcyc[pos] = cycs;
      rcyc[cycs] = max(rcyc[cycs], pos);
      pos = order[pos];
    } while (pos != i);
    if (i != order[i]) {
      targl = min(targl, lcyc[cycs]);
      targr = max(targr, rcyc[cycs]);
    }
    cycs++;
  }
  debug(retgood);
  return retgood + solve();
}

// int main() {
// #ifndef ONLINE_JUDGE
//   freopen("books.in", "r", stdin);
//   freopen("books.out", "w", stdout);
// #endif
//   cin.sync_with_stdio(0);
//   cin.tie(0);

//   int n, s;
//   cin >> n >> s;
//   VI order(n);

//   for (int i = 0; i < n; i++) {
//     cin >> order[i];
//   }

//   cout << minimum_walk(order, s) << '\n';

//   return 0;
// }

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

books.cpp: In function 'll solve()':
books.cpp:19:20: warning: statement has no effect [-Wunused-value]
   19 | #define debug(...) 42
      |                    ^~
books.cpp:96:5: note: in expansion of macro 'debug'
   96 |     debug(l, r, targl, targr);
      |     ^~~~~
books.cpp:19:20: warning: statement has no effect [-Wunused-value]
   19 | #define debug(...) 42
      |                    ^~
books.cpp:135:5: note: in expansion of macro 'debug'
  135 |     debug(l, r, targl, targr);
      |     ^~~~~
books.cpp:19:20: warning: statement has no effect [-Wunused-value]
   19 | #define debug(...) 42
      |                    ^~
books.cpp:136:5: note: in expansion of macro 'debug'
  136 |     debug(costl, costr);
      |     ^~~~~
books.cpp:19:20: warning: statement has no effect [-Wunused-value]
   19 | #define debug(...) 42
      |                    ^~
books.cpp:138:3: note: in expansion of macro 'debug'
  138 |   debug(retbad);
      |   ^~~~~
books.cpp: In function 'll minimum_walk(VI, int)':
books.cpp:19:20: warning: statement has no effect [-Wunused-value]
   19 | #define debug(...) 42
      |                    ^~
books.cpp:162:3: note: in expansion of macro 'debug'
  162 |   debug(retgood);
      |   ^~~~~
#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...