結果

問題 No.1767 BLUE to RED
ユーザー gazellegazelle
提出日時 2021-11-26 22:56:05
言語 C++17
(gcc 13.2.0 + boost 1.83.0)
結果
AC  
実行時間 62 ms / 2,000 ms
コード長 1,504 bytes
コンパイル時間 2,022 ms
コンパイル使用メモリ 201,812 KB
実行使用メモリ 6,268 KB
最終ジャッジ日時 2023-09-12 05:23:16
合計ジャッジ時間 4,440 ms
ジャッジサーバーID
(参考情報)
judge13 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
4,376 KB
testcase_01 AC 2 ms
4,376 KB
testcase_02 AC 2 ms
4,376 KB
testcase_03 AC 2 ms
4,376 KB
testcase_04 AC 1 ms
4,376 KB
testcase_05 AC 2 ms
4,376 KB
testcase_06 AC 1 ms
4,380 KB
testcase_07 AC 2 ms
4,380 KB
testcase_08 AC 2 ms
4,376 KB
testcase_09 AC 35 ms
4,832 KB
testcase_10 AC 46 ms
5,336 KB
testcase_11 AC 38 ms
4,860 KB
testcase_12 AC 35 ms
4,860 KB
testcase_13 AC 50 ms
5,664 KB
testcase_14 AC 62 ms
6,248 KB
testcase_15 AC 62 ms
6,136 KB
testcase_16 AC 62 ms
6,248 KB
testcase_17 AC 62 ms
6,172 KB
testcase_18 AC 62 ms
6,268 KB
testcase_19 AC 62 ms
6,248 KB
testcase_20 AC 62 ms
6,136 KB
testcase_21 AC 61 ms
6,132 KB
testcase_22 AC 61 ms
6,200 KB
testcase_23 AC 62 ms
6,188 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#define FOR(i, n, m) for(long long i = (n); i < (long long)(m); i++)
#define REP(i, n) FOR(i, 0, n)
#define ALL(v) v.begin(), v.end()
#define pb push_back
using namespace std;
using ll = long long;
using ld = long double;
using P = pair<ll, ll>;
constexpr ll inf = 1000000000;
constexpr ll mod = 998244353;
constexpr ld eps = 1e-6;

template <typename T1, typename T2>
ostream &operator<<(ostream &os, pair<T1, T2> p) {
    os << to_string(p.first) << " " << to_string(p.second);
    return os;
}
template <typename T> ostream &operator<<(ostream &os, vector<T> &v) {
    REP(i, v.size()) {
        if(i)
            os << " ";
        os << v[i];
    }
    return os;
}

int main() {
    cin.tie(0);
    ios::sync_with_stdio(false);
    int n, m;
    cin >> n >> m;

    vector<ll> a(n + 2), b(m);
    a[0] = -inf * inf;
    a[n + 1] = inf * inf;
    REP(i, n) cin >> a[1 + i];
    REP(i, m) cin >> b[i];

    n += 2;
    ll ans = 0;

    REP(i, n - 1) {
        // cout << i << endl;
        ll diff = a[i + 1] - a[i] - 1;
        auto iter = lower_bound(ALL(b), a[i]);
        ll max_jump = 0, prev = a[i];
        while(iter != b.end() && *iter < a[i + 1]) {
            max_jump = max(max_jump, *iter - prev - 1);
            prev = *iter;
            iter += 1;
        }
        max_jump = max(max_jump, a[i + 1] - prev - 1);
        // cout << i << " " << diff << " " << max_jump << endl;

        ans += diff - max_jump;
    }

    cout << ans << endl;

    return 0;
}
0