結果

問題 No.2248 max(C)-min(C)
ユーザー simansiman
提出日時 2023-03-19 23:13:41
言語 C++17(clang)
(17.0.6 + boost 1.83.0)
結果
AC  
実行時間 357 ms / 3,000 ms
コード長 1,598 bytes
コンパイル時間 5,639 ms
コンパイル使用メモリ 143,220 KB
実行使用メモリ 23,116 KB
最終ジャッジ日時 2024-09-18 13:54:21
合計ジャッジ時間 13,293 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 1 ms
5,376 KB
testcase_03 AC 3 ms
5,376 KB
testcase_04 AC 3 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 4 ms
5,376 KB
testcase_07 AC 5 ms
5,376 KB
testcase_08 AC 5 ms
5,376 KB
testcase_09 AC 5 ms
5,376 KB
testcase_10 AC 2 ms
5,376 KB
testcase_11 AC 5 ms
5,376 KB
testcase_12 AC 3 ms
5,376 KB
testcase_13 AC 4 ms
5,376 KB
testcase_14 AC 4 ms
5,376 KB
testcase_15 AC 5 ms
5,376 KB
testcase_16 AC 3 ms
5,376 KB
testcase_17 AC 4 ms
5,376 KB
testcase_18 AC 301 ms
18,948 KB
testcase_19 AC 36 ms
5,408 KB
testcase_20 AC 348 ms
22,848 KB
testcase_21 AC 328 ms
22,140 KB
testcase_22 AC 224 ms
17,744 KB
testcase_23 AC 139 ms
10,968 KB
testcase_24 AC 54 ms
6,780 KB
testcase_25 AC 315 ms
21,428 KB
testcase_26 AC 276 ms
17,960 KB
testcase_27 AC 318 ms
21,288 KB
testcase_28 AC 29 ms
5,376 KB
testcase_29 AC 294 ms
18,316 KB
testcase_30 AC 113 ms
10,532 KB
testcase_31 AC 349 ms
22,856 KB
testcase_32 AC 63 ms
6,816 KB
testcase_33 AC 104 ms
10,484 KB
testcase_34 AC 354 ms
22,984 KB
testcase_35 AC 357 ms
22,856 KB
testcase_36 AC 352 ms
22,988 KB
testcase_37 AC 175 ms
13,296 KB
testcase_38 AC 335 ms
22,980 KB
testcase_39 AC 331 ms
22,980 KB
testcase_40 AC 338 ms
22,980 KB
testcase_41 AC 274 ms
18,652 KB
testcase_42 AC 325 ms
22,904 KB
testcase_43 AC 293 ms
21,132 KB
testcase_44 AC 330 ms
22,956 KB
testcase_45 AC 246 ms
17,796 KB
testcase_46 AC 124 ms
10,672 KB
testcase_47 AC 328 ms
22,984 KB
testcase_48 AC 228 ms
22,984 KB
testcase_49 AC 352 ms
23,116 KB
testcase_50 AC 342 ms
23,108 KB
testcase_51 AC 351 ms
22,984 KB
testcase_52 AC 346 ms
23,108 KB
testcase_53 AC 53 ms
6,784 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <cassert>
#include <cmath>
#include <algorithm>
#include <iostream>
#include <iomanip>
#include <climits>
#include <map>
#include <queue>
#include <set>
#include <cstring>
#include <vector>

using namespace std;
typedef long long ll;

struct Node {
  int i;
  int c;

  Node(int i = -1, int c = -1) {
    this->i = i;
    this->c = c;
  }

  bool operator>(const Node &n) const {
    return c > n.c;
  }
};

int main() {
  int N;
  cin >> N;
  vector<int> A(N);
  vector<int> B(N);

  for (int i = 0; i < N; ++i) {
    cin >> A[i];
  }

  for (int i = 0; i < N; ++i) {
    cin >> B[i];
  }

  vector<int> nums;
  priority_queue <Node, vector<Node>, greater<Node>> pque;
  int cand[N][5];

  for (int i = 0; i < N; ++i) {
    int a = A[i];
    int b = B[i];
    if (a > b) {
      int t = a;
      a = b;
      b = t;
    }

    cand[i][0] = INT_MIN;
    cand[i][1] = a;
    cand[i][2] = (a + b) / 2;
    cand[i][3] = b;
    cand[i][4] = INT_MAX;

    nums.push_back(a);
    nums.push_back(b);
    nums.push_back((a + b) / 2);

    pque.push(Node(i, INT_MIN));
    pque.push(Node(i, a));
    pque.push(Node(i, b));
    pque.push(Node(i, (a + b) / 2));
    pque.push(Node(i, INT_MAX));
  }

  sort(nums.begin(), nums.end());
  vector<int> cur_pos(N, 0);
  int ans = INT_MAX;
  int max_c = 0;

  for (int min_c : nums) {
    while (not pque.empty() && pque.top().c < min_c) {
      Node node = pque.top();
      pque.pop();

      cur_pos[node.i]++;
      max_c = max(max_c, cand[node.i][cur_pos[node.i]]);
    }

    ans = min(ans, max_c - min_c);
  }

  cout << ans << endl;

  return 0;
}
0