結果

問題 No.2604 Initial Motion
ユーザー shobonvipshobonvip
提出日時 2024-01-13 17:47:06
言語 C++17
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 169 ms / 3,000 ms
コード長 1,514 bytes
コンパイル時間 4,711 ms
コンパイル使用メモリ 268,540 KB
最終ジャッジ日時 2025-02-18 19:44:23
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 39
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;

//* ATCODER
#include<atcoder/all>
using namespace atcoder;
typedef modint998244353 mint;
//*/

/* BOOST MULTIPRECISION
#include<boost/multiprecision/cpp_int.hpp>
using namespace boost::multiprecision;
//*/

typedef long long ll;

#define rep(i, s, n) for (int i = (int)(s); i < (int)(n); i++)
#define rrep(i, s, n) for (int i = (int)(n)-1; i >= (int)(s); i--)

template <typename T> bool chmin(T &a, const T &b) {
	if (a <= b) return false;
	a = b;
	return true;
}

template <typename T> bool chmax(T &a, const T &b) {
	if (a >= b) return false;
	a = b;
	return true;
}

template <typename T> T max(vector<T> &a){
	assert(!a.empty());
	T ret = a[0];
	for (int i=0; i<(int)a.size(); i++) chmax(ret, a[i]);
	return ret;
}

template <typename T> T min(vector<T> &a){
	assert(!a.empty());
	T ret = a[0];
	for (int i=0; i<(int)a.size(); i++) chmin(ret, a[i]);
	return ret;
}

template <typename T> T sum(vector<T> &a){
	T ret = 0;
	for (int i=0; i<(int)a.size(); i++) ret += a[i];
	return ret;
}

int main(){
	int k, n, m; cin >> k >> n >> m;

	vector<int> a(k);
	rep(i,0,k){
		cin >> a[i];
		a[i]--;
	}

	vector<int> b(n);
	rep(i,0,n){
		cin >> b[i];
	}

	mcf_graph<int,ll> mcf(n + 2);

	rep(i,0,m){
		int u, v; cin >> u >> v;
		u--; v--;
		ll d; cin >> d;
		mcf.add_edge(u, v, k, d);
		mcf.add_edge(v, u, k, d);
	}

	rep(i,0,k){
		mcf.add_edge(n, a[i], 1, 0);
	}

	rep(i,0,n){
		mcf.add_edge(i, n+1, b[i], 0);
	}

	auto [x, y] = mcf.flow(n, n+1);
	cout << y << '\n';

}

0