結果

問題 No.2286 Join Hands
ユーザー vjudge1vjudge1
提出日時 2025-01-03 14:22:25
言語 C++17(gcc12)
(gcc 12.3.0 + boost 1.87.0)
結果
AC  
実行時間 12 ms / 2,000 ms
コード長 1,328 bytes
コンパイル時間 4,633 ms
コンパイル使用メモリ 195,968 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2025-01-03 14:23:03
合計ジャッジ時間 4,799 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 2 ms
5,248 KB
testcase_03 AC 2 ms
5,248 KB
testcase_04 AC 1 ms
5,248 KB
testcase_05 AC 2 ms
5,248 KB
testcase_06 AC 2 ms
5,248 KB
testcase_07 AC 2 ms
5,248 KB
testcase_08 AC 5 ms
5,248 KB
testcase_09 AC 5 ms
5,248 KB
testcase_10 AC 12 ms
5,248 KB
testcase_11 AC 9 ms
5,248 KB
testcase_12 AC 11 ms
5,248 KB
testcase_13 AC 11 ms
5,248 KB
testcase_14 AC 8 ms
5,248 KB
testcase_15 AC 8 ms
5,248 KB
testcase_16 AC 8 ms
5,248 KB
testcase_17 AC 5 ms
5,248 KB
testcase_18 AC 6 ms
5,248 KB
testcase_19 AC 3 ms
5,248 KB
testcase_20 AC 5 ms
5,248 KB
testcase_21 AC 6 ms
5,248 KB
testcase_22 AC 4 ms
5,248 KB
testcase_23 AC 3 ms
5,248 KB
testcase_24 AC 5 ms
5,248 KB
testcase_25 AC 3 ms
5,248 KB
testcase_26 AC 3 ms
5,248 KB
testcase_27 AC 3 ms
5,248 KB
testcase_28 AC 2 ms
5,248 KB
testcase_29 AC 2 ms
5,248 KB
testcase_30 AC 2 ms
5,248 KB
testcase_31 AC 2 ms
5,248 KB
testcase_32 AC 2 ms
5,248 KB
testcase_33 AC 2 ms
5,248 KB
testcase_34 AC 2 ms
5,248 KB
testcase_35 AC 1 ms
5,248 KB
testcase_36 AC 2 ms
5,248 KB
testcase_37 AC 2 ms
5,248 KB
testcase_38 AC 2 ms
5,248 KB
testcase_39 AC 2 ms
5,248 KB
testcase_40 AC 2 ms
5,248 KB
testcase_41 AC 1 ms
5,248 KB
testcase_42 AC 1 ms
5,248 KB
testcase_43 AC 2 ms
5,248 KB
testcase_44 AC 2 ms
5,248 KB
testcase_45 AC 2 ms
5,248 KB
testcase_46 AC 2 ms
5,248 KB
testcase_47 AC 3 ms
5,248 KB
testcase_48 AC 3 ms
5,248 KB
testcase_49 AC 3 ms
5,248 KB
testcase_50 AC 4 ms
5,248 KB
testcase_51 AC 2 ms
5,248 KB
testcase_52 AC 4 ms
5,248 KB
testcase_53 AC 4 ms
5,248 KB
testcase_54 AC 3 ms
5,248 KB
testcase_55 AC 3 ms
5,248 KB
testcase_56 AC 4 ms
5,248 KB
testcase_57 AC 3 ms
5,248 KB
testcase_58 AC 3 ms
5,248 KB
testcase_59 AC 3 ms
5,248 KB
testcase_60 AC 3 ms
5,248 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: In function ‘void solve()’:
main.cpp:37:14: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   37 |         scanf("%d%d",&n,&m);
      |         ~~~~~^~~~~~~~~~~~~~
main.cpp:43:22: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   43 |                 scanf("%d%d",&x,&y);
      |                 ~~~~~^~~~~~~~~~~~~~

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;
const int N=2e5+5,inf=1e8;
int tid,test,n,m,S,T,d[N],du[N];
int hd[N],cur[N],to[N],nx[N],w[N],num=1;
void add(int x,int y,int z){
	nx[++num]=hd[x],hd[x]=num,to[num]=y,w[num]=z;
	nx[++num]=hd[y],hd[y]=num,to[num]=x,w[num]=0;
}
bool bfs(){
	queue<int>q;
	for(int i=1;i<=T;++i)d[i]=0;
	d[S]=1,q.push(S);
	while(!q.empty()){
		int u=q.front();
		q.pop();
		for(int i=hd[u],v;v=to[i],i;i=nx[i])if(w[i]&&!d[v]){
			d[v]=d[u]+1;
			if(v==T)return true;
			q.push(v);
		}
	}
	return false;
}
int dinic(int nw,int flow){
	if(nw==T)return flow;
	int rest=flow,k;
	for(int &i=cur[nw];i;i=nx[i])if(w[i]&&d[to[i]]==d[nw]+1){
		k=dinic(to[i],min(w[i],rest));
		if(!k)d[to[i]]=0;
		w[i]-=k,w[i^1]+=k,rest-=k;
		if(!rest)return flow;
	}
	return flow-rest;
}
void solve(){
	scanf("%d%d",&n,&m);
	S=2*n+1,T=S+1;
	for(int i=1;i<=T;++i)hd[i]=0;
	num=1;
	for(int i=1;i<=n;++i)du[i]=0,add(S,i,1),add(i+n,T,1);
	for(int i=1,x,y;i<=m;++i){
		scanf("%d%d",&x,&y);
		++du[x],++du[y];
		add(x,y+n,1);
		add(y,x+n,1);
	}
	int ct=0,maxflow=0;
	for(int i=1;i<=n;++i)if(!du[i])++ct;
	while(bfs()){
		for(int i=1;i<=T;++i)cur[i]=hd[i];
		maxflow+=dinic(S,inf);
	}
	if(maxflow==n-1&&ct==1)--maxflow;
	printf("%d\n",2*maxflow-n);
}
int main(){
	test=1;
	//scanf("%d%d",&tid,&test);
	while(test--)solve();
	return 0;
}
0