結果

問題 No.2114 01 Matching
ユーザー 👑 rin204rin204
提出日時 2022-10-29 14:15:39
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 334 ms / 5,000 ms
コード長 1,963 bytes
コンパイル時間 4,651 ms
コンパイル使用メモリ 299,072 KB
実行使用メモリ 47,232 KB
最終ジャッジ日時 2024-05-03 12:30:49
合計ジャッジ時間 17,020 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 168 ms
14,636 KB
testcase_03 AC 49 ms
12,800 KB
testcase_04 AC 69 ms
16,384 KB
testcase_05 AC 74 ms
8,512 KB
testcase_06 AC 134 ms
13,684 KB
testcase_07 AC 54 ms
5,376 KB
testcase_08 AC 252 ms
14,512 KB
testcase_09 AC 184 ms
7,364 KB
testcase_10 AC 168 ms
10,700 KB
testcase_11 AC 309 ms
47,104 KB
testcase_12 AC 334 ms
47,104 KB
testcase_13 AC 239 ms
22,024 KB
testcase_14 AC 313 ms
24,088 KB
testcase_15 AC 317 ms
24,092 KB
testcase_16 AC 300 ms
24,216 KB
testcase_17 AC 134 ms
13,508 KB
testcase_18 AC 150 ms
13,648 KB
testcase_19 AC 210 ms
21,364 KB
testcase_20 AC 317 ms
47,232 KB
testcase_21 AC 248 ms
22,476 KB
testcase_22 AC 136 ms
7,056 KB
testcase_23 AC 195 ms
14,856 KB
testcase_24 AC 55 ms
5,376 KB
testcase_25 AC 65 ms
7,736 KB
testcase_26 AC 295 ms
47,232 KB
testcase_27 AC 313 ms
47,104 KB
testcase_28 AC 143 ms
27,648 KB
testcase_29 AC 327 ms
47,104 KB
testcase_30 AC 55 ms
5,496 KB
testcase_31 AC 306 ms
47,232 KB
testcase_32 AC 250 ms
9,520 KB
testcase_33 AC 174 ms
14,596 KB
testcase_34 AC 52 ms
5,376 KB
testcase_35 AC 104 ms
21,376 KB
testcase_36 AC 326 ms
47,232 KB
testcase_37 AC 194 ms
9,116 KB
testcase_38 AC 54 ms
5,496 KB
testcase_39 AC 114 ms
6,012 KB
testcase_40 AC 103 ms
20,992 KB
testcase_41 AC 222 ms
7,420 KB
testcase_42 AC 179 ms
9,276 KB
testcase_43 AC 134 ms
13,724 KB
testcase_44 AC 292 ms
23,744 KB
testcase_45 AC 162 ms
47,104 KB
testcase_46 AC 74 ms
5,376 KB
testcase_47 AC 300 ms
47,104 KB
testcase_48 AC 302 ms
47,232 KB
testcase_49 AC 216 ms
21,240 KB
testcase_50 AC 87 ms
5,376 KB
testcase_51 AC 55 ms
5,376 KB
testcase_52 AC 320 ms
24,088 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#pragma GCC target("avx2")
#pragma GCC optimize("O3")
#pragma GCC optimize("unroll-loops")
#include<bits/stdc++.h>
#include<atcoder/lazysegtree>
using namespace std;
using namespace atcoder;

using S = long long;

S op(S l, S r){
    if(l <= r) return l;
    else return r;
}

S e(){
    return 1LL << 60;
}

using F = long long;

S mapping(F l, S r){
    return l + r;
}

F composition(F l, F r){
    return l + r;
}

F id(){
    return 0;
}

long long f(vector<int> &R, vector<int> &B){
    vector<pair<int, int>> event;
    for(auto r:R) event.push_back({r, 0});
    for(auto b:B) event.push_back({b, 1});
    sort(event.begin(), event.end());

    int n = R.size();
    int m = B.size();
    int z = n;
    lazy_segtree<S, op, e, F, mapping, composition, id> seg(n + m + 1);
    seg.set(z, 0);

    for(auto tmp:event){
        int x = tmp.first;
        if(tmp.second == 0){
            seg.apply(0, z, x);
            seg.apply(z, n + m + 1, -x);
            z--;
        }
        else{
            auto tmp = seg.get(z);
            z++;
            seg.apply(0, z, -x);
            seg.apply(z, n + m + 1, x);
            if(tmp < seg.get(z)){
                seg.set(z, tmp);
            }
        }
    }

    return seg.get(z);
}

void solve(){
    int n, m, k;
    cin >> n >> m >> k;
    map<int, vector<int>> B, R;
    int x;
    for(int i = 0; i < n; i++){
        cin >> x;
        B[x % k].push_back(x / k);
    }
    for(int i = 0; i < m; i++){
        cin >> x;
        R[x % k].push_back(x / k);
    }

    if(n > m){
        swap(n, m);
        swap(B, R);
    }

    long long ans = 0;
    
    for(auto tmp:B){
        int k = tmp.first;
        if(!R.count(k) || (B[k].size() > R[k].size())){
            cout << "-1\n";
            return;
        }
        ans += f(B[k], R[k]);
    }
    cout << ans << "\n";
    
}

int main(){
    cin.tie(0)->sync_with_stdio(0);
    int t;
    t = 1;
    // cin >> t;
    while(t--) solve();
}





0