結果

問題 No.2403 "Eight" Bridges of Königsberg
ユーザー kotatsugamekotatsugame
提出日時 2023-08-04 21:42:28
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 125 ms / 2,000 ms
コード長 592 bytes
コンパイル時間 573 ms
コンパイル使用メモリ 70,076 KB
実行使用メモリ 13,184 KB
最終ジャッジ日時 2024-11-26 17:46:48
合計ジャッジ時間 2,849 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 5 ms
9,596 KB
testcase_01 AC 5 ms
9,600 KB
testcase_02 AC 5 ms
9,644 KB
testcase_03 AC 5 ms
9,600 KB
testcase_04 AC 52 ms
11,136 KB
testcase_05 AC 105 ms
12,404 KB
testcase_06 AC 118 ms
13,184 KB
testcase_07 AC 66 ms
11,520 KB
testcase_08 AC 81 ms
12,032 KB
testcase_09 AC 125 ms
12,928 KB
testcase_10 AC 113 ms
12,672 KB
testcase_11 AC 90 ms
12,080 KB
testcase_12 AC 121 ms
12,936 KB
testcase_13 AC 85 ms
12,160 KB
testcase_14 AC 6 ms
9,600 KB
testcase_15 AC 4 ms
9,600 KB
testcase_16 AC 5 ms
9,728 KB
testcase_17 AC 4 ms
9,728 KB
testcase_18 AC 4 ms
9,728 KB
testcase_19 AC 5 ms
9,600 KB
testcase_20 AC 5 ms
9,728 KB
testcase_21 AC 6 ms
9,608 KB
testcase_22 AC 5 ms
9,856 KB
testcase_23 AC 6 ms
9,684 KB
testcase_24 AC 6 ms
10,364 KB
testcase_25 AC 5 ms
9,728 KB
testcase_26 AC 5 ms
9,644 KB
testcase_27 AC 8 ms
10,496 KB
testcase_28 AC 6 ms
10,368 KB
testcase_29 AC 7 ms
9,984 KB
testcase_30 AC 6 ms
9,924 KB
testcase_31 AC 6 ms
10,372 KB
testcase_32 AC 5 ms
9,728 KB
testcase_33 AC 5 ms
9,984 KB
testcase_34 AC 7 ms
9,836 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<iostream>
#include<vector>
#include<cassert>
using namespace std;
int N,M;
bool vis[2<<17];
int deg[2<<17];
vector<int>G[2<<17];
int dfs(int u)
{
	vis[u]=true;
	int ret=max(deg[u],0);
	for(int v:G[u])if(!vis[v])ret+=dfs(v);
	return ret;
}
int main()
{
	cin>>N>>M;
	for(int i=0;i<M;i++)
	{
		int u,v;cin>>u>>v;
		u--,v--;
		G[u].push_back(v);
		G[v].push_back(u);
		deg[u]++;
		deg[v]--;
	}
	int ans=0,zero=0,one=0;
	for(int i=0;i<N;i++)if(!vis[i]&&!G[i].empty())
	{
		int r=dfs(i);
		if(r==0)zero++;
		else
		{
			ans+=r-1;
			one++;
		}
	}
	ans+=zero+one;
	cout<<ans-!!ans<<endl;
}
0