結果
問題 | No.2320 Game World for PvP |
ユーザー | no way |
提出日時 | 2023-05-26 23:08:53 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 2,079 bytes |
コンパイル時間 | 2,094 ms |
コンパイル使用メモリ | 171,984 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-06-07 08:48:07 |
合計ジャッジ時間 | 2,990 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 3 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,376 KB |
testcase_02 | AC | 2 ms
5,376 KB |
testcase_03 | AC | 2 ms
5,376 KB |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | AC | 3 ms
5,376 KB |
testcase_08 | AC | 2 ms
5,376 KB |
testcase_09 | AC | 3 ms
5,376 KB |
testcase_10 | AC | 2 ms
5,376 KB |
testcase_11 | AC | 2 ms
5,376 KB |
testcase_12 | AC | 2 ms
5,376 KB |
testcase_13 | AC | 2 ms
5,376 KB |
testcase_14 | AC | 2 ms
5,376 KB |
testcase_15 | AC | 2 ms
5,376 KB |
testcase_16 | AC | 2 ms
5,376 KB |
testcase_17 | AC | 2 ms
5,376 KB |
testcase_18 | AC | 3 ms
5,376 KB |
testcase_19 | AC | 2 ms
5,376 KB |
testcase_20 | AC | 3 ms
5,376 KB |
testcase_21 | AC | 2 ms
5,376 KB |
testcase_22 | AC | 2 ms
5,376 KB |
testcase_23 | AC | 2 ms
5,376 KB |
testcase_24 | AC | 2 ms
5,376 KB |
testcase_25 | AC | 2 ms
5,376 KB |
testcase_26 | AC | 3 ms
5,376 KB |
testcase_27 | AC | 1 ms
5,376 KB |
testcase_28 | WA | - |
testcase_29 | WA | - |
testcase_30 | WA | - |
testcase_31 | WA | - |
testcase_32 | AC | 2 ms
5,376 KB |
testcase_33 | WA | - |
ソースコード
#include<bits/stdc++.h> using namespace std; const int N=200; const long long inf=1e15; struct node{ int u,to; long long w; }edge[N*N*10]; int head[N],arrange[N],cur[N],a[N],b[N],p[N],c[100][100]; int n,m,s,t,x,y,z,k,sx,tx; void add(int x,int y,long long z) { edge[k].u=y; edge[k].to=head[x]; edge[k].w=z; head[x]=k++; edge[k].u=x; edge[k].to=head[y]; edge[k].w=0; head[y]=k++; } bool bfs(){ memset(arrange,0,sizeof(arrange)); queue<int>q; q.push(s); arrange[s]=1; while (!q.empty()){ int v=q.front(); q.pop(); if (t==v) return 1; for (int i=head[v];i!=-1;i=edge[i].to){ int u=edge[i].u; if (arrange[u]||!edge[i].w) continue; arrange[u]=arrange[v]+1; q.push(u); } } return 0; } long long dfs(int now,long long maxlow,int t){ if (now==t) return maxlow; long long ret=0; for (int &i=cur[now];i!=-1;i=edge[i].to){ int u=edge[i].u; if (arrange[u]!=arrange[now]+1||!edge[i].w) continue; long long f=dfs(u,min(maxlow-ret,edge[i].w),t); edge[i].w-=f; edge[i^1].w+=f; ret+=f; if (f==maxlow) return maxlow; } return ret; } long long dinic(){ long long ans=0; while (bfs()){ memcpy(cur,head,sizeof(head)); ans+=dfs(s,inf,t); } return ans; } int main(){ scanf("%d%d%d",&n,&sx,&tx); memset(head,-1,sizeof(head));k=0; for (int i=1;i<=sx;i++){ scanf("%d",&a[i]); p[a[i]]=1; } for (int i=1;i<=tx;i++){ scanf("%d",&b[i]); p[b[i]]=1; } long long ans=0; for (int i=1;i<=n;i++) for (int j=1;j<=n;j++) scanf("%d",&c[i][j]); for (int i=1;i<=n;i++) for (int j=i+1;j<=n;j++) if (!p[i]||!p[j]) ans+=c[i][j]; for (int i=1;i<=sx;i++) for (int j=i+1;j<=sx;j++) ans+=c[a[i]][a[j]]; for (int i=1;i<=tx;i++) for (int j=i+1;j<=tx;j++) ans+=c[b[i]][b[j]]; s=n*2+1; t=n*2+2; int cnt=0; for (int i=1;i<=n;i++) if (!p[i]){ long long w=0; for (int j=1;j<=sx;j++) w+=c[i][a[j]]; add(s,i*2-1,w); w=0; for (int j=1;j<=tx;j++) w+=c[i][b[j]]; add(i*2,t,w); add(i*2-1,i*2,inf); } for (int i=1;i<=n;i++) for (int j=1;j<=n;j++) if (!p[i]&&!p[j]&&i!=j) add(i*2-1,j*2,c[i][j]); printf("%lld\n",ans-dinic()); }