結果
問題 | No.2713 Just Solitaire |
ユーザー | hiro1729 |
提出日時 | 2024-03-31 15:11:18 |
言語 | C++23 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 950 bytes |
コンパイル時間 | 3,256 ms |
コンパイル使用メモリ | 262,016 KB |
実行使用メモリ | 6,824 KB |
最終ジャッジ日時 | 2024-09-30 20:21:58 |
合計ジャッジ時間 | 4,311 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,816 KB |
testcase_01 | AC | 2 ms
6,816 KB |
testcase_02 | WA | - |
testcase_03 | AC | 3 ms
6,816 KB |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | AC | 2 ms
6,820 KB |
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 | - |
ソースコード
#include<bits/stdc++.h> #include<atcoder/maxflow> using namespace std; #define rep(i,l,r)for(int i=(l);i<(r);i++) int main(){ int n,m; cin >> n >> m; vector<int>c(n); rep(i,0,n)cin >> c[i]; vector<int>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 int INF=(int)1e9; atcoder::mf_graph<int> 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); int ans=0; rep(i,0,m)ans+=a[i]; cout << ans-ret << endl; }