結果

問題 No.1390 Get together
ユーザー publflpublfl
提出日時 2021-02-12 21:28:16
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 170 ms / 2,000 ms
コード長 568 bytes
コンパイル時間 414 ms
コンパイル使用メモリ 49,664 KB
実行使用メモリ 22,912 KB
最終ジャッジ日時 2024-07-19 20:18:32
合計ジャッジ時間 4,276 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 6 ms
12,544 KB
testcase_01 AC 5 ms
12,544 KB
testcase_02 AC 6 ms
12,416 KB
testcase_03 AC 7 ms
12,672 KB
testcase_04 AC 7 ms
12,672 KB
testcase_05 AC 7 ms
12,800 KB
testcase_06 AC 7 ms
12,672 KB
testcase_07 AC 7 ms
12,800 KB
testcase_08 AC 7 ms
12,800 KB
testcase_09 AC 8 ms
12,672 KB
testcase_10 AC 6 ms
12,416 KB
testcase_11 AC 5 ms
12,416 KB
testcase_12 AC 6 ms
12,544 KB
testcase_13 AC 6 ms
12,544 KB
testcase_14 AC 6 ms
12,544 KB
testcase_15 AC 6 ms
12,288 KB
testcase_16 AC 88 ms
18,480 KB
testcase_17 AC 91 ms
19,372 KB
testcase_18 AC 87 ms
20,980 KB
testcase_19 AC 165 ms
22,784 KB
testcase_20 AC 141 ms
22,208 KB
testcase_21 AC 146 ms
22,272 KB
testcase_22 AC 131 ms
21,864 KB
testcase_23 AC 133 ms
21,852 KB
testcase_24 AC 132 ms
21,728 KB
testcase_25 AC 166 ms
22,912 KB
testcase_26 AC 166 ms
22,720 KB
testcase_27 AC 164 ms
22,784 KB
testcase_28 AC 167 ms
22,912 KB
testcase_29 AC 170 ms
22,912 KB
testcase_30 AC 164 ms
22,656 KB
testcase_31 AC 167 ms
22,784 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <stdio.h>
#include <vector>

int x[400010];
std::vector<int> V[400010];
int check[400010];

int func(int k)
{
	if(check[k]) return 0;
	check[k] = 1;
	int ans = x[k];
	for(int i=0;i<V[k].size();i++) ans += func(V[k][i]);
	return ans;
}

int main()
{
	int a,b;
	scanf("%d%d",&a,&b);
	for(int i=1;i<=a;i++)
	{
		int c,d;
		scanf("%d%d",&c,&d);
		V[d].push_back(c+a);
		V[c+a].push_back(d);
	}
	for(int i=a+1;i<=a+b;i++) x[i] = 1;
	int ans = 0;
	for(int i=a+1;i<=a+b;i++)
	{
		if(check[i]==0)
		{
			int C = func(i);
			ans += (C-1);
		}
	}
	printf("%d\n",ans);
}
0