結果

問題 No.2248 max(C)-min(C)
ユーザー ei1333333ei1333333
提出日時 2023-03-17 21:48:28
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 565 ms / 3,000 ms
コード長 715 bytes
コンパイル時間 2,396 ms
コンパイル使用メモリ 210,092 KB
実行使用メモリ 19,712 KB
最終ジャッジ日時 2024-09-18 10:38:36
合計ジャッジ時間 14,311 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 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 4 ms
5,376 KB
testcase_08 AC 4 ms
5,376 KB
testcase_09 AC 4 ms
5,376 KB
testcase_10 AC 2 ms
5,376 KB
testcase_11 AC 4 ms
5,376 KB
testcase_12 AC 3 ms
5,376 KB
testcase_13 AC 3 ms
5,376 KB
testcase_14 AC 4 ms
5,376 KB
testcase_15 AC 4 ms
5,376 KB
testcase_16 AC 3 ms
5,376 KB
testcase_17 AC 3 ms
5,376 KB
testcase_18 AC 236 ms
17,536 KB
testcase_19 AC 27 ms
5,376 KB
testcase_20 AC 280 ms
19,712 KB
testcase_21 AC 259 ms
18,816 KB
testcase_22 AC 176 ms
14,208 KB
testcase_23 AC 106 ms
10,240 KB
testcase_24 AC 38 ms
6,144 KB
testcase_25 AC 244 ms
18,048 KB
testcase_26 AC 212 ms
16,384 KB
testcase_27 AC 245 ms
17,920 KB
testcase_28 AC 21 ms
5,376 KB
testcase_29 AC 225 ms
16,896 KB
testcase_30 AC 79 ms
8,960 KB
testcase_31 AC 278 ms
19,712 KB
testcase_32 AC 43 ms
6,528 KB
testcase_33 AC 72 ms
8,320 KB
testcase_34 AC 283 ms
19,584 KB
testcase_35 AC 283 ms
19,584 KB
testcase_36 AC 280 ms
19,712 KB
testcase_37 AC 129 ms
11,776 KB
testcase_38 AC 461 ms
19,584 KB
testcase_39 AC 444 ms
19,584 KB
testcase_40 AC 457 ms
19,584 KB
testcase_41 AC 340 ms
17,280 KB
testcase_42 AC 446 ms
19,584 KB
testcase_43 AC 370 ms
17,792 KB
testcase_44 AC 448 ms
19,584 KB
testcase_45 AC 318 ms
16,000 KB
testcase_46 AC 130 ms
10,112 KB
testcase_47 AC 469 ms
19,584 KB
testcase_48 AC 280 ms
19,584 KB
testcase_49 AC 548 ms
19,584 KB
testcase_50 AC 565 ms
19,584 KB
testcase_51 AC 547 ms
19,584 KB
testcase_52 AC 553 ms
19,712 KB
testcase_53 AC 54 ms
6,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>

using namespace std;

using int64 = long long;

int main() {
  int N;
  cin >> N;
  vector< int64 > A(N), B(N);
  for(auto& a: A) cin >> a;
  for(auto& b: B) cin >> b;
  int64 val = 1ll << 60;
  vector< int > used(N);
  multimap< int64, int > st;
  for(int i = 0; i < N; i++) {
    if(A[i] > B[i]) {
      swap(A[i], B[i]);
    }
    st.emplace(A[i], i);
  }
  val = min(val,st.rbegin()->first-st.begin()->first);
  for(;;) {
    auto [v, i] = *st.begin();
    st.erase(st.begin());
    if(used[i] == 3) break;
    used[i]++;
    if(used[i] == 1) st.emplace((A[i]+B[i])/2,i);
    else st.emplace(B[i],i);
    val = min(val,st.rbegin()->first-st.begin()->first);
  }
  cout << val << endl;
}
0