結果
問題 | No.2604 Initial Motion |
ユーザー | cho435 |
提出日時 | 2024-01-12 23:42:44 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 851 bytes |
コンパイル時間 | 4,396 ms |
コンパイル使用メモリ | 283,456 KB |
実行使用メモリ | 28,060 KB |
最終ジャッジ日時 | 2024-09-28 00:24:56 |
合計ジャッジ時間 | 10,374 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,812 KB |
testcase_01 | AC | 1 ms
6,940 KB |
testcase_02 | AC | 2 ms
6,944 KB |
testcase_03 | AC | 139 ms
17,324 KB |
testcase_04 | AC | 142 ms
18,660 KB |
testcase_05 | AC | 135 ms
17,924 KB |
testcase_06 | AC | 137 ms
17,408 KB |
testcase_07 | AC | 134 ms
17,408 KB |
testcase_08 | AC | 137 ms
17,560 KB |
testcase_09 | AC | 129 ms
17,552 KB |
testcase_10 | AC | 134 ms
17,640 KB |
testcase_11 | AC | 138 ms
17,464 KB |
testcase_12 | AC | 132 ms
18,208 KB |
testcase_13 | TLE | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
testcase_26 | -- | - |
testcase_27 | -- | - |
testcase_28 | -- | - |
testcase_29 | -- | - |
testcase_30 | -- | - |
testcase_31 | -- | - |
testcase_32 | -- | - |
testcase_33 | -- | - |
testcase_34 | -- | - |
testcase_35 | -- | - |
testcase_36 | -- | - |
testcase_37 | -- | - |
testcase_38 | -- | - |
testcase_39 | -- | - |
testcase_40 | -- | - |
testcase_41 | -- | - |
ソースコード
#include <bits/stdc++.h> #include <atcoder/all> using namespace std; using ll = long long; #define rep(i,n) for(int i=0;i<(int)(n);i++) using mint = atcoder::modint998244353; int main(){ int k,n,m; cin>>k>>n>>m; vector<int> a(k),b(n); rep(i,k) cin>>a.at(i); rep(i,n) cin>>b.at(i); rep(i,k) a.at(i)--; vector<vector<ll>> g(n,vector<ll>(n,1e18)); rep(lp,m){ int u,v; ll d; cin>>u>>v>>d; u--; v--; g.at(u).at(v)=d; g.at(v).at(u)=d; } rep(i,n) g.at(i).at(i)=0; rep(i,n) rep(j,n) rep(k,n){ if(g.at(j).at(k)>g.at(j).at(i)+g.at(i).at(k)){ g.at(j).at(k)=g.at(j).at(i)+g.at(i).at(k); } } atcoder::mcf_graph<ll,ll> mcf(k+n+2); rep(i,k) rep(j,n){ mcf.add_edge(i,k+j,1,g.at(a.at(i)).at(j)); } rep(i,k) mcf.add_edge(k+n,i,1,0); rep(i,n) mcf.add_edge(k+i,k+n+1,b.at(i),0); auto[mx,cs]=mcf.flow(k+n,k+n+1); cout<<cs<<endl; }