結果

問題 No.2248 max(C)-min(C)
ユーザー Nzt3Nzt3
提出日時 2023-03-17 23:42:40
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 137 ms / 3,000 ms
コード長 739 bytes
コンパイル時間 2,264 ms
コンパイル使用メモリ 210,392 KB
実行使用メモリ 9,360 KB
最終ジャッジ日時 2024-09-18 12:38:14
合計ジャッジ時間 6,830 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 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 2 ms
5,376 KB
testcase_07 AC 3 ms
5,376 KB
testcase_08 AC 2 ms
5,376 KB
testcase_09 AC 2 ms
5,376 KB
testcase_10 AC 2 ms
5,376 KB
testcase_11 AC 2 ms
5,376 KB
testcase_12 AC 3 ms
5,376 KB
testcase_13 AC 3 ms
5,376 KB
testcase_14 AC 3 ms
5,376 KB
testcase_15 AC 2 ms
5,376 KB
testcase_16 AC 2 ms
5,376 KB
testcase_17 AC 2 ms
5,376 KB
testcase_18 AC 54 ms
8,768 KB
testcase_19 AC 9 ms
5,376 KB
testcase_20 AC 61 ms
9,260 KB
testcase_21 AC 59 ms
9,064 KB
testcase_22 AC 42 ms
8,072 KB
testcase_23 AC 28 ms
5,984 KB
testcase_24 AC 12 ms
5,376 KB
testcase_25 AC 56 ms
9,024 KB
testcase_26 AC 51 ms
8,496 KB
testcase_27 AC 56 ms
8,992 KB
testcase_28 AC 7 ms
5,376 KB
testcase_29 AC 54 ms
8,572 KB
testcase_30 AC 23 ms
5,652 KB
testcase_31 AC 62 ms
9,216 KB
testcase_32 AC 14 ms
5,376 KB
testcase_33 AC 21 ms
5,376 KB
testcase_34 AC 63 ms
9,264 KB
testcase_35 AC 62 ms
9,260 KB
testcase_36 AC 61 ms
9,264 KB
testcase_37 AC 33 ms
6,360 KB
testcase_38 AC 101 ms
9,260 KB
testcase_39 AC 102 ms
9,264 KB
testcase_40 AC 104 ms
9,256 KB
testcase_41 AC 87 ms
8,688 KB
testcase_42 AC 101 ms
9,264 KB
testcase_43 AC 89 ms
8,804 KB
testcase_44 AC 103 ms
9,260 KB
testcase_45 AC 79 ms
8,508 KB
testcase_46 AC 41 ms
5,920 KB
testcase_47 AC 104 ms
9,360 KB
testcase_48 AC 93 ms
9,264 KB
testcase_49 AC 134 ms
9,264 KB
testcase_50 AC 137 ms
9,260 KB
testcase_51 AC 136 ms
9,260 KB
testcase_52 AC 135 ms
9,256 KB
testcase_53 AC 22 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

const int mod=998244353;
int main(){
  ios::sync_with_stdio(false);
  cin.tie(nullptr);
  int N;
  cin>>N;
  vector<int>A(N),B(N);
  for(int &i:A)cin>>i;
  for(int &i:B)cin>>i;
  vector<array<int,3>>C(N);
  for(int i=0;i<N;i++){
    C[i][0]=A[i],C[i][1]=B[i],C[i][2]=(A[i]+B[i])/2;
    sort(C[i].begin(),C[i].end());
  }
  int ans=1e9,m=0;
  priority_queue<array<int,2>,vector<array<int,2>>,greater<array<int,2>>>pq;
  for(int i=0;i<N;i++){
    m=max(m,C[i][0]);
    pq.push({C[i][0],i});
  }
  while(pq.size()){
    int t=pq.top()[0],d=pq.top()[1];
    pq.pop();
    ans=min(ans,m-t);
    if(d/N==2)break;
    pq.push({C[d%N][d/N+1],d+N});
    m=max(m,C[d%N][d/N+1]);
  }
  cout<<ans<<'\n';
}
0