結果

問題 No.1767 BLUE to RED
ユーザー 👑 NachiaNachia
提出日時 2021-11-26 23:28:48
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 82 ms / 2,000 ms
コード長 1,237 bytes
コンパイル時間 737 ms
コンパイル使用メモリ 81,892 KB
実行使用メモリ 14,816 KB
最終ジャッジ日時 2024-06-29 18:35:11
合計ジャッジ時間 3,048 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,944 KB
testcase_02 AC 2 ms
6,944 KB
testcase_03 AC 2 ms
6,940 KB
testcase_04 AC 2 ms
6,944 KB
testcase_05 AC 2 ms
6,944 KB
testcase_06 AC 1 ms
6,944 KB
testcase_07 AC 2 ms
6,940 KB
testcase_08 AC 2 ms
6,944 KB
testcase_09 AC 45 ms
9,728 KB
testcase_10 AC 57 ms
12,160 KB
testcase_11 AC 49 ms
9,856 KB
testcase_12 AC 46 ms
9,728 KB
testcase_13 AC 63 ms
13,412 KB
testcase_14 AC 79 ms
14,712 KB
testcase_15 AC 79 ms
14,760 KB
testcase_16 AC 81 ms
14,776 KB
testcase_17 AC 80 ms
14,764 KB
testcase_18 AC 78 ms
14,704 KB
testcase_19 AC 81 ms
14,816 KB
testcase_20 AC 82 ms
14,744 KB
testcase_21 AC 80 ms
14,728 KB
testcase_22 AC 78 ms
14,736 KB
testcase_23 AC 79 ms
14,772 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
#include <algorithm>
using namespace std;
using i32 = int32_t;
using u32 = uint32_t;
using i64 = int64_t;
using u64 = uint64_t;
#define rep(i,n) for(int i=0; i<(n); i++)



int main(){
    int N,M; cin >> N >> M;
    vector<i64> A(N);
    rep(i,N) cin >> A[i];
    vector<vector<i64>> B(A.size() + 1);
    rep(i,M){
        int b; cin >> b;
        int p = upper_bound(A.begin(), A.end(), b) - A.begin();
        B[p].push_back(b);
    }
    vector<i64> ans(B.size(), 0);
    rep(i,B.size()) if(!B[i].empty()) ans[i] = 1001001001;
    for(int i=0; i<A.size(); i++) if(!B[i].empty()) ans[i] = min(ans[i], A[i] - B[i].front());
    for(int i=0; i<A.size(); i++) if(!B[i+1].empty()) ans[i+1] = min(ans[i+1], B[i+1].back() - A[i]);
    for(int i=1; i<A.size(); i++) if(!B[i].empty()){
        i64 d = A[i] - A[i-1] - 1;
        for(int j=0; j+1 < B[i].size(); j++){
            ans[i] = min(ans[i], d - (B[i][j+1] - B[i][j] - 1));
        }
    }

    i64 finalans = 0;
    for(auto a : ans) finalans += a;
    cout << finalans << endl;
    return 0;
}




struct ios_do_not_sync {
    ios_do_not_sync() {
        ios::sync_with_stdio(false);
        cin.tie(nullptr);
    }
} ios_do_not_sync_instance;
0