結果

問題 No.2286 Join Hands
ユーザー t98slidert98slider
提出日時 2023-04-28 23:16:51
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 1,047 ms / 2,000 ms
コード長 964 bytes
コンパイル時間 4,628 ms
コンパイル使用メモリ 245,192 KB
実行使用メモリ 8,428 KB
最終ジャッジ日時 2024-11-17 22:11:31
合計ジャッジ時間 23,044 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,820 KB
testcase_02 AC 2 ms
6,820 KB
testcase_03 AC 2 ms
6,820 KB
testcase_04 AC 2 ms
6,820 KB
testcase_05 AC 2 ms
6,824 KB
testcase_06 AC 2 ms
6,816 KB
testcase_07 AC 2 ms
6,816 KB
testcase_08 AC 30 ms
6,820 KB
testcase_09 AC 38 ms
6,816 KB
testcase_10 AC 215 ms
6,892 KB
testcase_11 AC 344 ms
7,404 KB
testcase_12 AC 342 ms
7,268 KB
testcase_13 AC 200 ms
6,820 KB
testcase_14 AC 512 ms
7,784 KB
testcase_15 AC 453 ms
7,784 KB
testcase_16 AC 532 ms
8,036 KB
testcase_17 AC 26 ms
6,816 KB
testcase_18 AC 808 ms
8,044 KB
testcase_19 AC 1,025 ms
7,656 KB
testcase_20 AC 944 ms
7,912 KB
testcase_21 AC 780 ms
8,172 KB
testcase_22 AC 1,006 ms
7,780 KB
testcase_23 AC 1,027 ms
7,784 KB
testcase_24 AC 838 ms
8,040 KB
testcase_25 AC 1,032 ms
7,652 KB
testcase_26 AC 1,047 ms
7,400 KB
testcase_27 AC 1,046 ms
7,656 KB
testcase_28 AC 2 ms
6,820 KB
testcase_29 AC 1 ms
6,816 KB
testcase_30 AC 1 ms
6,820 KB
testcase_31 AC 2 ms
6,816 KB
testcase_32 AC 2 ms
6,816 KB
testcase_33 AC 2 ms
6,820 KB
testcase_34 AC 2 ms
6,816 KB
testcase_35 AC 2 ms
6,816 KB
testcase_36 AC 1 ms
6,820 KB
testcase_37 AC 2 ms
6,816 KB
testcase_38 AC 2 ms
6,816 KB
testcase_39 AC 2 ms
6,816 KB
testcase_40 AC 2 ms
6,816 KB
testcase_41 AC 2 ms
6,816 KB
testcase_42 AC 2 ms
6,820 KB
testcase_43 AC 2 ms
6,820 KB
testcase_44 AC 2 ms
6,816 KB
testcase_45 AC 2 ms
6,816 KB
testcase_46 AC 2 ms
6,816 KB
testcase_47 AC 232 ms
8,296 KB
testcase_48 AC 231 ms
8,300 KB
testcase_49 AC 351 ms
8,420 KB
testcase_50 AC 369 ms
8,424 KB
testcase_51 AC 1,010 ms
7,396 KB
testcase_52 AC 273 ms
6,816 KB
testcase_53 AC 229 ms
8,296 KB
testcase_54 AC 89 ms
6,820 KB
testcase_55 AC 134 ms
7,268 KB
testcase_56 AC 368 ms
8,424 KB
testcase_57 AC 360 ms
8,428 KB
testcase_58 AC 232 ms
8,428 KB
testcase_59 AC 230 ms
8,300 KB
testcase_60 AC 1,026 ms
8,424 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

int main(){
	ios::sync_with_stdio(false);
    cin.tie(0);
    int n, m, u, v;
    cin >> n >> m;
    atcoder::mcf_graph<int, int> g(4 * n + 2);
    int s = 4 * n, t = s + 1;
    for(int i = 0; i < m; i++){
        cin >> u >> v;
        u--, v--;
        g.add_edge(v, u + 3 * n, 2, 0);
        g.add_edge(u, v + 3 * n, 2, 0);
    }
    for(int i = 0; i < n; i++){
        g.add_edge(s, i, 2, 0);

        g.add_edge(i + n, i + 3 * n, 2, 0);
        g.add_edge(i + 2 * n, i + 3 * n, 2, 0);

        g.add_edge(i + 3 * n, t, 2, 0);

        if(i >= 1){
            g.add_edge(i + n, i + n - 1, 1 << 30, 0);
            g.add_edge(i, i + n - 1, 2, 1);
        }

        if(i + 1 < n){
            g.add_edge(i + 2 * n, i + 2 * n + 1, 1 << 30, 0);
            g.add_edge(i, i + 2 * n + 1, 2, 1);
        }
    }
    auto p = g.flow(s, t);
    cout << n - p.second << '\n';
}
0