結果

問題 No.2604 Initial Motion
ユーザー ShirotsumeShirotsume
提出日時 2024-01-12 23:05:50
言語 C++23
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 133 ms / 3,000 ms
コード長 857 bytes
コンパイル時間 6,484 ms
コンパイル使用メモリ 326,720 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-09-27 23:50:55
合計ジャッジ時間 8,776 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 39
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
#include <atcoder/all>
using namespace atcoder;
#define ll long long
int main() {
    ios_base::sync_with_stdio(false);
    cin.tie(NULL);

    int n, m, k;
    cin >> k >> n >> m;
    vector<int> a(n, 0);
    for(int i = 0; i < k; i++){
        int x;
        cin >> x;
        a[x - 1]++;
    }
    vector<int> b(n);
    for(int i = 0; i < n; i++){
        cin >> b[i];
    }
    mcf_graph<int, ll> g(n + 5);
    int S = n;
    int T = n + 1;
    for(int i = 0; i < n; i++){
        g.add_edge(S, i, a[i], 0);
        g.add_edge(i, T, b[i], 0);
    }
    for(int i = 0; i < m; i++){
        int s, t;
        ll d;
        cin >>s>>t>>d;
        s--; t--;
        g.add_edge(s, t, k, d);
        g.add_edge(t, s, k, d);

    }
    pair<int, ll> f = g.flow(S, T);
    cout << f.second << endl;
    return 0;
}
0