結果

問題 No.2320 Game World for PvP
ユーザー 👑 tatyamtatyam
提出日時 2023-05-02 18:29:18
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 3 ms / 2,000 ms
コード長 833 bytes
コンパイル時間 1,313 ms
コンパイル使用メモリ 114,772 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-05-01 05:52:42
合計ジャッジ時間 2,601 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 1 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 3 ms
5,376 KB
testcase_08 AC 3 ms
5,376 KB
testcase_09 AC 2 ms
5,376 KB
testcase_10 AC 3 ms
5,376 KB
testcase_11 AC 2 ms
5,376 KB
testcase_12 AC 2 ms
5,376 KB
testcase_13 AC 3 ms
5,376 KB
testcase_14 AC 2 ms
5,376 KB
testcase_15 AC 3 ms
5,376 KB
testcase_16 AC 2 ms
5,376 KB
testcase_17 AC 2 ms
5,376 KB
testcase_18 AC 2 ms
5,376 KB
testcase_19 AC 2 ms
5,376 KB
testcase_20 AC 3 ms
5,376 KB
testcase_21 AC 3 ms
5,376 KB
testcase_22 AC 2 ms
5,376 KB
testcase_23 AC 3 ms
5,376 KB
testcase_24 AC 2 ms
5,376 KB
testcase_25 AC 3 ms
5,376 KB
testcase_26 AC 2 ms
5,376 KB
testcase_27 AC 1 ms
5,376 KB
testcase_28 AC 3 ms
5,376 KB
testcase_29 AC 3 ms
5,376 KB
testcase_30 AC 3 ms
5,376 KB
testcase_31 AC 3 ms
5,376 KB
testcase_32 AC 2 ms
5,376 KB
testcase_33 AC 3 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <climits>
#include <iostream>
#include <vector>
#include <atcoder/maxflow>
using namespace std;
using ll = long long;
const ll INF = LLONG_MAX / 4;

int main() {
    cin.tie(nullptr);
    ios_base::sync_with_stdio(false);
    
    int N, S, T;
    cin >> N >> S >> T;
    
    const int src = N, dst = N + 1;
    atcoder::mf_graph<ll> g(N + 2);
    while(S--) {
        int A;
        cin >> A;
        A--;
        g.add_edge(src, A, INF);
    }
    while(T--) {
        int B;
        cin >> B;
        B--;
        g.add_edge(B, dst, INF);
    }
    ll ans = 0;
    for(int i = 0; i < N; i++) for(int j = 0; j < N; j++) {
        ll C;
        cin >> C;
        if(i < j) {
            ans += C;
            g.change_edge(g.add_edge(i, j, 0), C * 2, C);
        }
    }
    
    cout << ans - g.flow(src, dst) << endl;
}
0