結果

問題 No.1767 BLUE to RED
ユーザー SSRSSSRS
提出日時 2021-11-26 22:41:53
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 190 ms / 2,000 ms
コード長 890 bytes
コンパイル時間 1,644 ms
コンパイル使用メモリ 172,240 KB
実行使用メモリ 12,800 KB
最終ジャッジ日時 2024-06-29 18:17:27
合計ジャッジ時間 5,395 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 1 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 2 ms
5,376 KB
testcase_08 AC 3 ms
5,376 KB
testcase_09 AC 107 ms
8,576 KB
testcase_10 AC 139 ms
10,496 KB
testcase_11 AC 118 ms
8,832 KB
testcase_12 AC 107 ms
8,576 KB
testcase_13 AC 152 ms
11,392 KB
testcase_14 AC 190 ms
12,800 KB
testcase_15 AC 190 ms
12,672 KB
testcase_16 AC 189 ms
12,800 KB
testcase_17 AC 189 ms
12,672 KB
testcase_18 AC 189 ms
12,672 KB
testcase_19 AC 189 ms
12,672 KB
testcase_20 AC 190 ms
12,748 KB
testcase_21 AC 189 ms
12,640 KB
testcase_22 AC 189 ms
12,672 KB
testcase_23 AC 189 ms
12,704 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
int main(){
  int N, M;
  cin >> N >> M;
  vector<int> A(N);
  for (int i = 0; i < N; i++){
    cin >> A[i];
  }
  vector<int> B(M);
  for (int i = 0; i < M; i++){
    cin >> B[i];
  }
  vector<vector<int>> C(N + 1);
  for (int i = 0; i < M; i++){
    int p = lower_bound(A.begin(), A.end(), B[i]) - A.begin();
    C[p].push_back(B[i]);
  }
  int ans = 0;
  if (!C[0].empty()){
    ans += A[0] - C[0][0];
  }
  if (!C[N].empty()){
    ans += C[N][C[N].size() - 1] - A[N - 1];
  }
  for (int i = 1; i < N; i++){
    if (!C[i].empty()){
      int cnt = C[i].size();
      int D = A[i] - A[i - 1];
      int mx = 0;
      mx = max(mx, C[i][0] - A[i - 1]);
      mx = max(mx, A[i] - C[i][cnt - 1]);
      for (int j = 0; j < cnt - 1; j++){
        mx = max(mx, C[i][j + 1] - C[i][j]);
      }
      ans += D - mx;
    }
  }
  cout << ans << endl;
}
0