結果

問題 No.2422 regisys?
ユーザー t98slidert98slider
提出日時 2023-08-12 15:36:48
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 1,303 bytes
コンパイル時間 3,570 ms
コンパイル使用メモリ 241,804 KB
実行使用メモリ 82,616 KB
最終ジャッジ日時 2024-04-30 09:53:09
合計ジャッジ時間 17,112 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
13,760 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 2 ms
6,944 KB
testcase_03 AC 2 ms
6,940 KB
testcase_04 AC 2 ms
6,940 KB
testcase_05 AC 2 ms
6,940 KB
testcase_06 AC 2 ms
6,940 KB
testcase_07 AC 2 ms
6,940 KB
testcase_08 AC 2 ms
6,944 KB
testcase_09 AC 2 ms
6,940 KB
testcase_10 AC 2 ms
6,940 KB
testcase_11 AC 2 ms
6,944 KB
testcase_12 AC 1 ms
6,944 KB
testcase_13 AC 2 ms
6,944 KB
testcase_14 AC 2 ms
6,944 KB
testcase_15 AC 2 ms
6,944 KB
testcase_16 AC 2 ms
6,940 KB
testcase_17 AC 1 ms
6,944 KB
testcase_18 AC 1 ms
6,944 KB
testcase_19 AC 2 ms
6,944 KB
testcase_20 AC 2 ms
6,944 KB
testcase_21 AC 2 ms
6,944 KB
testcase_22 AC 2 ms
6,940 KB
testcase_23 AC 2 ms
6,940 KB
testcase_24 AC 1 ms
6,940 KB
testcase_25 AC 1 ms
6,944 KB
testcase_26 AC 1 ms
6,944 KB
testcase_27 AC 2 ms
6,944 KB
testcase_28 AC 2 ms
6,940 KB
testcase_29 AC 1 ms
6,944 KB
testcase_30 AC 2 ms
6,940 KB
testcase_31 AC 264 ms
32,936 KB
testcase_32 AC 287 ms
33,092 KB
testcase_33 AC 174 ms
32,052 KB
testcase_34 AC 75 ms
13,784 KB
testcase_35 AC 204 ms
38,796 KB
testcase_36 AC 170 ms
23,868 KB
testcase_37 AC 392 ms
36,696 KB
testcase_38 AC 108 ms
19,824 KB
testcase_39 AC 78 ms
14,788 KB
testcase_40 AC 117 ms
21,124 KB
testcase_41 AC 109 ms
17,884 KB
testcase_42 AC 399 ms
65,648 KB
testcase_43 AC 386 ms
29,556 KB
testcase_44 AC 501 ms
68,020 KB
testcase_45 AC 387 ms
58,364 KB
testcase_46 AC 523 ms
67,604 KB
testcase_47 AC 1,911 ms
39,460 KB
testcase_48 AC 418 ms
74,080 KB
testcase_49 TLE -
testcase_50 AC 356 ms
69,828 KB
testcase_51 AC 1,042 ms
74,344 KB
testcase_52 AC 178 ms
34,488 KB
testcase_53 AC 1,462 ms
69,608 KB
testcase_54 AC 575 ms
82,616 KB
testcase_55 AC 560 ms
70,308 KB
testcase_56 AC 243 ms
48,548 KB
testcase_57 TLE -
testcase_58 -- -
testcase_59 -- -
testcase_60 -- -
testcase_61 -- -
権限があれば一括ダウンロードができます

ソースコード

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