結果

問題 No.2320 Game World for PvP
ユーザー 👑 tatyamtatyam
提出日時 2023-04-11 16:23:15
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
(最新)
AC  
(最初)
実行時間 -
コード長 766 bytes
コンパイル時間 1,072 ms
コンパイル使用メモリ 117,820 KB
実行使用メモリ 6,948 KB
最終ジャッジ日時 2024-04-19 12:36:06
合計ジャッジ時間 1,886 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

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);
    }
    for(int i = 0; i < N; i++) for(int j = 0; j < N; j++) {
        int C;
        cin >> C;
        if(i < j) g.change_edge(g.add_edge(i, j, 0), C * 2, C);
    }
    
    cout << g.flow(src, dst) << endl;
}
0