結果

問題 No.1874 Minimum of Sum of Rectangles
ユーザー KudeKude
提出日時 2022-03-11 23:10:37
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
(最新)
AC  
(最初)
実行時間 -
コード長 2,288 bytes
コンパイル時間 2,626 ms
コンパイル使用メモリ 229,872 KB
実行使用メモリ 4,672 KB
最終ジャッジ日時 2023-10-14 10:34:46
合計ジャッジ時間 14,046 ms
ジャッジサーバーID
(参考情報)
judge15 / judge14
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
4,352 KB
testcase_01 WA -
testcase_02 WA -
testcase_03 AC 1 ms
4,352 KB
testcase_04 AC 4 ms
4,348 KB
testcase_05 AC 22 ms
4,560 KB
testcase_06 AC 23 ms
4,556 KB
testcase_07 AC 23 ms
4,592 KB
testcase_08 AC 374 ms
4,648 KB
testcase_09 AC 67 ms
4,664 KB
testcase_10 AC 67 ms
4,616 KB
testcase_11 AC 67 ms
4,556 KB
testcase_12 AC 67 ms
4,568 KB
testcase_13 AC 75 ms
4,552 KB
testcase_14 AC 423 ms
4,564 KB
testcase_15 AC 425 ms
4,556 KB
testcase_16 AC 426 ms
4,552 KB
testcase_17 AC 427 ms
4,556 KB
testcase_18 AC 406 ms
4,616 KB
testcase_19 AC 427 ms
4,596 KB
testcase_20 AC 424 ms
4,556 KB
testcase_21 AC 425 ms
4,672 KB
testcase_22 AC 427 ms
4,656 KB
testcase_23 AC 426 ms
4,652 KB
testcase_24 AC 425 ms
4,552 KB
testcase_25 AC 425 ms
4,612 KB
testcase_26 AC 426 ms
4,644 KB
testcase_27 AC 426 ms
4,556 KB
testcase_28 AC 426 ms
4,552 KB
testcase_29 AC 424 ms
4,564 KB
testcase_30 AC 425 ms
4,588 KB
testcase_31 AC 425 ms
4,564 KB
testcase_32 AC 425 ms
4,652 KB
testcase_33 AC 428 ms
4,556 KB
testcase_34 AC 2 ms
4,348 KB
testcase_35 AC 2 ms
4,348 KB
testcase_36 AC 2 ms
4,348 KB
testcase_37 AC 67 ms
4,592 KB
testcase_38 AC 69 ms
4,616 KB
testcase_39 AC 67 ms
4,612 KB
testcase_40 AC 67 ms
4,552 KB
testcase_41 AC 67 ms
4,592 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
namespace {
#pragma GCC diagnostic push
#pragma GCC diagnostic ignored "-Wunused-function"
#include<atcoder/all>
#pragma GCC diagnostic pop
using namespace std;
using namespace atcoder;
#define rep(i,n) for(int i = 0; i < (int)(n); i++)
#define rrep(i,n) for(int i = (int)(n) - 1; i >= 0; i--)
#define all(x) begin(x), end(x)
#define rall(x) rbegin(x), rend(x)
template<class T> bool chmax(T& a, const T& b) { if (a < b) { a = b; return true; } else return false; }
template<class T> bool chmin(T& a, const T& b) { if (b < a) { a = b; return true; } else return false; }
using ll = long long;
using P = pair<int,int>;
using VI = vector<int>;
using VVI = vector<VI>;
using VL = vector<ll>;
using VVL = vector<VL>;

template<class S>
struct value_compression : vector<S> {
  bool built = false;
  using VS = vector<S>;
  using VS::vector;
  value_compression(vector<S> v) : vector<S>(move(v)) {}
  void build() {
    sort(VS::begin(), VS::end());
    VS::erase(unique(VS::begin(), VS::end()), VS::end());
    built = true;
  }
  template<class T>
  void convert(T first, T last) { for (; first != last; ++first) *first = (*this)(*first); }
  int operator()(S x) {
    assert(built);
    return lower_bound(VS::begin(), VS::end(), x) - VS::begin();
  }
  void clear() { VS::clear(); built = false; }
};

} int main() {
  ios::sync_with_stdio(false);
  cin.tie(0);
  int n;
  cin >> n;
  VI x(n), y(n);
  rep(i, n) cin >> x[i] >> y[i];
  value_compression<int> vx = x, vy = y;
  vx.build(), vy.build();
  const int szx = vx.size(), szy = vy.size();
  int lx = vx[0] - 1, rx = vx.back() + 1;
  auto score = [&](int a, int b) {
    ll res = 0;
    rep(i, n) res += (ll)abs(x[i] - a) * abs(y[i] - b);
    return res;
  };
  auto f = [&](int a) {
    int ly = vy[0] - 1, ry = vy.back();
    while(ry - ly > 2) {
      int cy1 = (ly + ry) / 2;
      int cy2 = cy1 + 1;
      if (score(a, cy1) < score(a, cy2)) ry = cy2;
      else ly = cy1;
    }
    return ly + 1;
  };
  while(rx - lx > 2) {
    int cx1 = (lx + rx) / 2;
    int cx2 = cx1 + 1;
    int y1 = f(cx1);
    int y2 = f(cx2);
    if (score(cx1, y1) < score(cx2, y2)) {
      rx = cx2;
    } else {
      lx = cx1;
    }
  }
  int ax = lx + 1;
  int ay = f(ax);
  ll ans = score(ax, ay);
  cout << ans << '\n';
}
0