結果
問題 | No.2713 Just Solitaire |
ユーザー | hiro1729 |
提出日時 | 2024-03-31 15:12:21 |
言語 | C++23 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 967 bytes |
コンパイル時間 | 2,981 ms |
コンパイル使用メモリ | 262,152 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-09-30 20:23:45 |
合計ジャッジ時間 | 4,037 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,248 KB |
testcase_02 | AC | 2 ms
5,248 KB |
testcase_03 | AC | 3 ms
5,248 KB |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | AC | 1 ms
5,248 KB |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | AC | 2 ms
5,248 KB |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | AC | 2 ms
5,248 KB |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | AC | 2 ms
5,248 KB |
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 | - |
ソースコード
#include<bits/stdc++.h> #include<atcoder/maxflow> using namespace std; using ll = long long; #define rep(i,l,r)for(int i=(l);i<(r);i++) int main(){ int n,m; cin >> n >> m; vector<ll>c(n); rep(i,0,n)cin >> c[i]; vector<ll>a(m); rep(i,0,m)cin >> a[i]; vector<vector<int>>level(m,vector<int>(n, 1)); rep(i,0,m) { int K, x; cin >> K; rep(j, 0, K) { cin >> x; level[i][--x] = 2; } } vector<vector<int>>skill(n,vector<int>(3)); rep(i,0,n)rep(j,0,2)skill[i][j+1]=2*i+j; vector<int>achieve(m); rep(i,0,m)achieve[i]=2*n+i; int source=2*n+m; int sink=2*n+m+1; const ll INF=(ll)1e18; atcoder::mf_graph<ll> g(2*n+m+2); rep(i,0,n)rep(j,2,2+1)g.add_edge(source,skill[i][j],c[i]); rep(i,0,m)g.add_edge(achieve[i],sink,a[i]); rep(i,0,n)rep(j,1,1+1)g.add_edge(skill[i][j],skill[i][j+1],INF); rep(i,0,m)rep(j,0,n)g.add_edge(skill[j][level[i][j]],achieve[i],INF); int ret=g.flow(source,sink); ll ans=0; rep(i,0,m)ans+=a[i]; cout << ans-ret << endl; }