結果

問題 No.808 Kaiten Sushi?
ユーザー 48025254802525
提出日時 2019-03-31 20:25:07
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 107 ms / 2,000 ms
コード長 891 bytes
コンパイル時間 1,478 ms
コンパイル使用メモリ 166,456 KB
実行使用メモリ 7,124 KB
最終ジャッジ日時 2024-05-01 23:56:56
合計ジャッジ時間 6,588 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 1 ms
6,944 KB
testcase_04 AC 1 ms
6,940 KB
testcase_05 AC 2 ms
6,940 KB
testcase_06 AC 2 ms
6,940 KB
testcase_07 AC 3 ms
6,944 KB
testcase_08 AC 3 ms
6,940 KB
testcase_09 AC 4 ms
6,940 KB
testcase_10 AC 4 ms
6,944 KB
testcase_11 AC 3 ms
6,940 KB
testcase_12 AC 4 ms
6,944 KB
testcase_13 AC 3 ms
6,940 KB
testcase_14 AC 2 ms
6,944 KB
testcase_15 AC 5 ms
6,944 KB
testcase_16 AC 4 ms
6,944 KB
testcase_17 AC 2 ms
6,940 KB
testcase_18 AC 2 ms
6,944 KB
testcase_19 AC 2 ms
6,944 KB
testcase_20 AC 2 ms
6,944 KB
testcase_21 AC 2 ms
6,948 KB
testcase_22 AC 2 ms
6,944 KB
testcase_23 AC 41 ms
6,940 KB
testcase_24 AC 33 ms
6,940 KB
testcase_25 AC 37 ms
6,940 KB
testcase_26 AC 36 ms
6,940 KB
testcase_27 AC 86 ms
6,944 KB
testcase_28 AC 27 ms
6,944 KB
testcase_29 AC 83 ms
6,940 KB
testcase_30 AC 52 ms
6,944 KB
testcase_31 AC 92 ms
6,940 KB
testcase_32 AC 106 ms
7,040 KB
testcase_33 AC 53 ms
6,944 KB
testcase_34 AC 59 ms
6,944 KB
testcase_35 AC 72 ms
6,944 KB
testcase_36 AC 53 ms
6,940 KB
testcase_37 AC 2 ms
6,944 KB
testcase_38 AC 2 ms
6,944 KB
testcase_39 AC 95 ms
6,944 KB
testcase_40 AC 22 ms
6,944 KB
testcase_41 AC 26 ms
6,944 KB
testcase_42 AC 79 ms
6,944 KB
testcase_43 AC 37 ms
6,940 KB
testcase_44 AC 61 ms
6,944 KB
testcase_45 AC 35 ms
6,940 KB
testcase_46 AC 21 ms
6,944 KB
testcase_47 AC 105 ms
7,124 KB
testcase_48 AC 105 ms
7,072 KB
testcase_49 AC 104 ms
7,072 KB
testcase_50 AC 106 ms
7,064 KB
testcase_51 AC 107 ms
7,108 KB
testcase_52 AC 64 ms
6,940 KB
testcase_53 AC 86 ms
6,940 KB
testcase_54 AC 2 ms
6,944 KB
testcase_55 AC 1 ms
6,940 KB
testcase_56 AC 1 ms
6,944 KB
testcase_57 AC 28 ms
6,944 KB
testcase_58 AC 49 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
#define REP(i,N) for(i=0;i<N;i++)
typedef long long ll;
typedef pair<int, int> P;
typedef struct{
  int first;
  int second;
  int third;
}T;

//昇順
bool comp_Se(T& l, T& r){
  return l.second < r.second;
}

int main(void){
  int N;
  ll L;
  cin >> N >> L;
  vector<pair<ll,int> > v(2*N);
  int i;
  REP(i,N){
    cin >> v[i].first;
    v[i].second = 0;
  }
  REP(i,N){
    cin >> v[N+i].first;
    v[N+i].second = 1;
  }
  sort(v.begin(),v.end());
  int index;
  ll count=0,max=0,min=0;
  pair<int,int> p;

  vector<int> d(v.size());
  REP(i,v.size()){
    if(!v[i].second)count++;
    else count--;
    if(count >= max){
      max = count;
      index = i;
    }
    if(count < min) min = count;
  }
  ll ans;
  if(max>0) ans = (max-min-1)*L + v[index+1].first; 
  else ans = (max-min)*L + v[0].first;
  cout << ans << endl;
  return 0;
}
0