結果

問題 No.1767 BLUE to RED
ユーザー first_vilfirst_vil
提出日時 2021-10-12 23:15:23
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 173 ms / 2,000 ms
コード長 790 bytes
コンパイル時間 1,986 ms
コンパイル使用メモリ 205,656 KB
実行使用メモリ 9,200 KB
最終ジャッジ日時 2024-06-29 17:43:01
合計ジャッジ時間 6,780 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 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 2 ms
5,376 KB
testcase_09 AC 97 ms
6,468 KB
testcase_10 AC 126 ms
8,772 KB
testcase_11 AC 108 ms
6,420 KB
testcase_12 AC 97 ms
6,328 KB
testcase_13 AC 138 ms
8,888 KB
testcase_14 AC 171 ms
9,196 KB
testcase_15 AC 170 ms
9,192 KB
testcase_16 AC 171 ms
9,196 KB
testcase_17 AC 170 ms
9,068 KB
testcase_18 AC 171 ms
9,164 KB
testcase_19 AC 172 ms
8,972 KB
testcase_20 AC 172 ms
9,068 KB
testcase_21 AC 170 ms
9,196 KB
testcase_22 AC 173 ms
9,200 KB
testcase_23 AC 172 ms
9,072 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
#define rep(i,n) for(int i=0;i<n;++i)
int main() {
    int n, m; cin >> n >> m;
    vector<int> a(n), b(m);
    rep(i,n)cin >> a[i];
    rep(i,m)cin >> b[i];
    vector<pair<int, bool>> x;
    for (int i = 0, j = 0; i < n || j < m;) {
        if (j == m || (i < n && a[i] < b[j])) {
            x.emplace_back(a[i++], true);
        }
        else {
            x.emplace_back(b[j++], false);
        }
    }

    int ans = x.back().first - x.front().first;
    int pre = -1, mac = 0;
    rep(i,n + m) {
        if (i) {
            mac = max(mac, x[i].first - x[i - 1].first);
        }
        if (x[i].second) {
            if (pre != -1)ans -= mac;
            pre = i, mac = 0;
        }
    }
    cout << ans << "\n";
    
    return 0;
}
0