結果

問題 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  
実行時間 128 ms / 2,000 ms
コード長 592 bytes
コンパイル時間 649 ms
コンパイル使用メモリ 69,888 KB
実行使用メモリ 13,056 KB
最終ジャッジ日時 2024-05-05 01:22:41
合計ジャッジ時間 2,993 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 7 ms
9,600 KB
testcase_01 AC 6 ms
9,728 KB
testcase_02 AC 6 ms
9,600 KB
testcase_03 AC 6 ms
9,600 KB
testcase_04 AC 55 ms
11,136 KB
testcase_05 AC 108 ms
12,544 KB
testcase_06 AC 122 ms
13,056 KB
testcase_07 AC 68 ms
11,520 KB
testcase_08 AC 83 ms
11,904 KB
testcase_09 AC 128 ms
12,928 KB
testcase_10 AC 115 ms
12,672 KB
testcase_11 AC 90 ms
12,032 KB
testcase_12 AC 122 ms
13,056 KB
testcase_13 AC 86 ms
12,160 KB
testcase_14 AC 6 ms
9,600 KB
testcase_15 AC 7 ms
9,472 KB
testcase_16 AC 6 ms
9,728 KB
testcase_17 AC 7 ms
9,600 KB
testcase_18 AC 6 ms
9,600 KB
testcase_19 AC 8 ms
9,600 KB
testcase_20 AC 7 ms
9,728 KB
testcase_21 AC 7 ms
9,600 KB
testcase_22 AC 8 ms
9,728 KB
testcase_23 AC 7 ms
9,728 KB
testcase_24 AC 7 ms
10,240 KB
testcase_25 AC 8 ms
9,728 KB
testcase_26 AC 7 ms
9,600 KB
testcase_27 AC 9 ms
10,368 KB
testcase_28 AC 10 ms
10,368 KB
testcase_29 AC 8 ms
9,856 KB
testcase_30 AC 7 ms
9,984 KB
testcase_31 AC 9 ms
10,496 KB
testcase_32 AC 8 ms
9,728 KB
testcase_33 AC 8 ms
9,856 KB
testcase_34 AC 8 ms
9,856 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