結果

問題 No.2422 regisys?
ユーザー t98slidert98slider
提出日時 2023-08-12 15:36:48
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
TLE  
実行時間 -
コード長 1,303 bytes
コンパイル時間 4,102 ms
コンパイル使用メモリ 239,844 KB
実行使用メモリ 90,796 KB
最終ジャッジ日時 2024-11-20 03:35:29
合計ジャッジ時間 33,459 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
10,496 KB
testcase_01 AC 1 ms
44,572 KB
testcase_02 AC 3 ms
10,496 KB
testcase_03 AC 2 ms
54,724 KB
testcase_04 AC 2 ms
10,496 KB
testcase_05 AC 2 ms
73,524 KB
testcase_06 AC 2 ms
10,496 KB
testcase_07 AC 2 ms
6,816 KB
testcase_08 AC 2 ms
6,816 KB
testcase_09 AC 2 ms
6,820 KB
testcase_10 AC 2 ms
6,820 KB
testcase_11 AC 2 ms
6,820 KB
testcase_12 AC 1 ms
6,820 KB
testcase_13 AC 2 ms
5,248 KB
testcase_14 AC 2 ms
5,248 KB
testcase_15 AC 2 ms
5,248 KB
testcase_16 AC 2 ms
5,248 KB
testcase_17 AC 2 ms
5,248 KB
testcase_18 AC 2 ms
5,248 KB
testcase_19 AC 2 ms
5,248 KB
testcase_20 AC 2 ms
5,248 KB
testcase_21 AC 1 ms
5,248 KB
testcase_22 AC 2 ms
5,248 KB
testcase_23 AC 2 ms
5,248 KB
testcase_24 AC 2 ms
5,248 KB
testcase_25 AC 2 ms
5,248 KB
testcase_26 AC 1 ms
5,248 KB
testcase_27 AC 2 ms
5,248 KB
testcase_28 AC 2 ms
5,248 KB
testcase_29 AC 2 ms
5,248 KB
testcase_30 AC 2 ms
5,248 KB
testcase_31 AC 287 ms
32,884 KB
testcase_32 AC 318 ms
33,088 KB
testcase_33 AC 182 ms
31,856 KB
testcase_34 AC 80 ms
13,788 KB
testcase_35 AC 228 ms
38,776 KB
testcase_36 AC 185 ms
23,508 KB
testcase_37 AC 463 ms
36,652 KB
testcase_38 AC 125 ms
19,880 KB
testcase_39 AC 87 ms
14,784 KB
testcase_40 AC 130 ms
21,124 KB
testcase_41 AC 119 ms
17,752 KB
testcase_42 AC 456 ms
65,256 KB
testcase_43 AC 384 ms
29,720 KB
testcase_44 AC 588 ms
67,636 KB
testcase_45 AC 441 ms
57,928 KB
testcase_46 AC 603 ms
67,084 KB
testcase_47 TLE -
testcase_48 AC 481 ms
73,480 KB
testcase_49 TLE -
testcase_50 AC 419 ms
69,856 KB
testcase_51 AC 1,133 ms
73,700 KB
testcase_52 AC 202 ms
34,016 KB
testcase_53 AC 1,670 ms
68,448 KB
testcase_54 AC 613 ms
81,456 KB
testcase_55 AC 669 ms
70,384 KB
testcase_56 AC 286 ms
47,168 KB
testcase_57 TLE -
testcase_58 TLE -
testcase_59 TLE -
testcase_60 TLE -
testcase_61 AC 2 ms
90,796 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
using ll = long long;

#include<atcoder/all>
using namespace std;

int main(){
    ios::sync_with_stdio(false);
    cin.tie(0);
    int n, m, v;
    cin >> n >> m;
    vector<pair<int,int>> a(n), b(n);
    for(int i = 0; i < n; i++){
        cin >> v;
        a[i] = {v, i};
    }
    for(int i = 0; i < n; i++){
        cin >> v;
        b[i] = {v, i};
    }
    sort(a.begin(), a.end());
    sort(b.begin(), b.end());
    atcoder::mf_graph<int> g(3 * n + 2);
    int s = 3 * n, t = s + 1;
    for(int i = 0; i < n; i++){
        g.add_edge(i, 2 * n + i, 1);
        g.add_edge(n + i, 2 * n + i, 1);
        g.add_edge(2 * n + i, t, 1);
        if(i + 1 < n){
            g.add_edge(a[i + 1].second, a[i].second, n);
            g.add_edge(b[i + 1].second + n, b[i].second + n, n);
        }
    }
    for(int i = 0; i < m; i++){
        int c;
        cin >> c >> v;
        if(c == 0){
            int id = upper_bound(a.begin(), a.end(), make_pair(v, n + 1)) - a.begin();
            if(id >= 1) g.add_edge(s, a[id - 1].second, 1);
        }else{
            int id = upper_bound(b.begin(), b.end(), make_pair(v, n + 1)) - b.begin();
            if(id >= 1) g.add_edge(s, b[id - 1].second + n, 1);
        }
    }
    cout << n - g.flow(s, t) << '\n';
}
0