結果

問題 No.1767 BLUE to RED
ユーザー monnumonnu
提出日時 2021-11-26 23:27:45
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 225 ms / 2,000 ms
コード長 735 bytes
コンパイル時間 3,784 ms
コンパイル使用メモリ 235,052 KB
実行使用メモリ 11,720 KB
最終ジャッジ日時 2024-06-29 18:34:59
合計ジャッジ時間 8,010 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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 1 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 2 ms
5,376 KB
testcase_08 AC 3 ms
5,376 KB
testcase_09 AC 116 ms
7,628 KB
testcase_10 AC 143 ms
11,600 KB
testcase_11 AC 121 ms
7,500 KB
testcase_12 AC 119 ms
7,628 KB
testcase_13 AC 158 ms
11,600 KB
testcase_14 AC 225 ms
11,720 KB
testcase_15 AC 223 ms
11,548 KB
testcase_16 AC 224 ms
11,592 KB
testcase_17 AC 220 ms
11,640 KB
testcase_18 AC 219 ms
11,596 KB
testcase_19 AC 224 ms
11,596 KB
testcase_20 AC 220 ms
11,720 KB
testcase_21 AC 221 ms
11,720 KB
testcase_22 AC 222 ms
11,600 KB
testcase_23 AC 220 ms
11,596 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
#include <atcoder/all>
using namespace atcoder;
using ll=long long;
using Graph=vector<vector<int>>;
#define INF 1000000000
#define MOD 998244353
#define MAX 1000000

int main(){
  int N,M;
  cin>>N>>M;
  vector<pair<ll,int>> x;
  for(int i=0;i<N;i++){
    ll A;
    cin>>A;
    x.push_back(make_pair(A,1));
  }
  for(int j=0;j<M;j++){
    ll B;
    cin>>B;
    x.push_back(make_pair(B,0));
  }
  x.push_back(make_pair(-INF,1));
  x.push_back(make_pair(2*INF,1));
  sort(x.begin(),x.end());
  ll ans=x[N+M+1].first-x[0].first;
  ll y=0;
  for(int i=0;i<=N+M;i++){
    y=max<ll>(y,x[i+1].first-x[i].first);
    if(x[i+1].second==1){
      ans-=y;
      y=0;
    }
  }
  cout<<ans<<'\n';

}
0