結果

問題 No.2248 max(C)-min(C)
ユーザー 👑 emthrmemthrm
提出日時 2023-03-17 21:42:31
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 499 ms / 3,000 ms
コード長 1,876 bytes
コンパイル時間 3,255 ms
コンパイル使用メモリ 269,132 KB
実行使用メモリ 29,184 KB
最終ジャッジ日時 2024-09-18 10:30:39
合計ジャッジ時間 13,322 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 1 ms
5,376 KB
testcase_02 AC 1 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 3 ms
5,376 KB
testcase_07 AC 3 ms
5,376 KB
testcase_08 AC 3 ms
5,376 KB
testcase_09 AC 3 ms
5,376 KB
testcase_10 AC 1 ms
5,376 KB
testcase_11 AC 4 ms
5,376 KB
testcase_12 AC 2 ms
5,376 KB
testcase_13 AC 2 ms
5,376 KB
testcase_14 AC 3 ms
5,376 KB
testcase_15 AC 3 ms
5,376 KB
testcase_16 AC 2 ms
5,376 KB
testcase_17 AC 3 ms
5,376 KB
testcase_18 AC 186 ms
25,728 KB
testcase_19 AC 21 ms
6,144 KB
testcase_20 AC 217 ms
29,056 KB
testcase_21 AC 214 ms
27,776 KB
testcase_22 AC 130 ms
20,352 KB
testcase_23 AC 80 ms
14,208 KB
testcase_24 AC 29 ms
7,552 KB
testcase_25 AC 192 ms
26,752 KB
testcase_26 AC 168 ms
23,936 KB
testcase_27 AC 192 ms
26,368 KB
testcase_28 AC 16 ms
6,944 KB
testcase_29 AC 173 ms
24,576 KB
testcase_30 AC 63 ms
11,904 KB
testcase_31 AC 213 ms
29,056 KB
testcase_32 AC 33 ms
8,192 KB
testcase_33 AC 57 ms
11,264 KB
testcase_34 AC 224 ms
28,928 KB
testcase_35 AC 219 ms
28,928 KB
testcase_36 AC 217 ms
29,056 KB
testcase_37 AC 102 ms
16,512 KB
testcase_38 AC 362 ms
26,536 KB
testcase_39 AC 356 ms
26,496 KB
testcase_40 AC 366 ms
26,368 KB
testcase_41 AC 301 ms
23,424 KB
testcase_42 AC 405 ms
26,496 KB
testcase_43 AC 319 ms
23,936 KB
testcase_44 AC 368 ms
26,624 KB
testcase_45 AC 253 ms
21,632 KB
testcase_46 AC 120 ms
13,312 KB
testcase_47 AC 381 ms
26,496 KB
testcase_48 AC 162 ms
18,816 KB
testcase_49 AC 499 ms
29,056 KB
testcase_50 AC 471 ms
29,184 KB
testcase_51 AC 467 ms
29,056 KB
testcase_52 AC 490 ms
28,928 KB
testcase_53 AC 52 ms
7,552 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
#define FOR(i,m,n) for(int i=(m);i<(n);++i)
#define REP(i,n) FOR(i,0,n)
#define ALL(v) (v).begin(),(v).end()
using ll = long long;
constexpr int INF = 0x3f3f3f3f;
constexpr long long LINF = 0x3f3f3f3f3f3f3f3fLL;
constexpr double EPS = 1e-8;
constexpr int MOD = 998244353;
// constexpr int MOD = 1000000007;
constexpr int DY4[]{1, 0, -1, 0}, DX4[]{0, -1, 0, 1};
constexpr int DY8[]{1, 1, 0, -1, -1, -1, 0, 1};
constexpr int DX8[]{0, -1, -1, -1, 0, 1, 1, 1};
template <typename T, typename U>
inline bool chmax(T& a, U b) { return a < b ? (a = b, true) : false; }
template <typename T, typename U>
inline bool chmin(T& a, U b) { return a > b ? (a = b, true) : false; }
struct IOSetup {
  IOSetup() {
    std::cin.tie(nullptr);
    std::ios_base::sync_with_stdio(false);
    std::cout << fixed << setprecision(20);
  }
} iosetup;

int main() {
  int n; cin >> n;
  vector<int> a(n), b(n);
  REP(i, n) cin >> a[i], a[i] /= 2;
  REP(i, n) cin >> b[i], b[i] /= 2;
  REP(i, n) {
    if (a[i] > b[i]) swap(a[i], b[i]);
  }
  vector<int> v;
  v.reserve(n * 3);
  REP(i, n) {
    v.emplace_back(a[i] * 2);
    v.emplace_back(a[i] + b[i]);
    v.emplace_back(b[i] * 2);
  }
  ranges::sort(v);
  v.erase(unique(ALL(v)), v.end());
  map<int, vector<int>> pos;
  REP(i, n) pos[a[i] * 2].emplace_back(i);
  int ans = INF;
  for (const int min_c : v) {
    while (pos.begin()->first < min_c) {
      const vector<int> tmp = pos.begin()->second;
      pos.erase(pos.begin());
      for (const int i : tmp) {
        if (min_c <= a[i] + b[i]) {
          pos[a[i] + b[i]].emplace_back(i);
        } else if (min_c <= b[i] * 2) {
          pos[b[i] * 2].emplace_back(i);
        } else {
          cout << ans << '\n';
          return 0;
        }
      }
    }
    chmin(ans, pos.rbegin()->first - min_c);
  }
  cout << ans << '\n';
  return 0;
}
0