結果

問題 No.826 連絡網
ユーザー kotatsugamekotatsugame
提出日時 2019-05-04 01:06:17
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 63 ms / 2,000 ms
コード長 683 bytes
コンパイル時間 658 ms
コンパイル使用メモリ 69,860 KB
実行使用メモリ 11,108 KB
最終ジャッジ日時 2024-05-03 05:17:32
合計ジャッジ時間 2,099 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,944 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 2 ms
6,940 KB
testcase_04 AC 2 ms
6,944 KB
testcase_05 AC 2 ms
6,944 KB
testcase_06 AC 2 ms
6,944 KB
testcase_07 AC 2 ms
6,944 KB
testcase_08 AC 2 ms
6,940 KB
testcase_09 AC 2 ms
6,944 KB
testcase_10 AC 2 ms
6,944 KB
testcase_11 AC 2 ms
6,940 KB
testcase_12 AC 44 ms
8,864 KB
testcase_13 AC 15 ms
6,940 KB
testcase_14 AC 32 ms
7,424 KB
testcase_15 AC 5 ms
6,940 KB
testcase_16 AC 20 ms
6,940 KB
testcase_17 AC 15 ms
6,940 KB
testcase_18 AC 11 ms
6,940 KB
testcase_19 AC 51 ms
9,764 KB
testcase_20 AC 50 ms
9,592 KB
testcase_21 AC 2 ms
6,944 KB
testcase_22 AC 15 ms
6,940 KB
testcase_23 AC 20 ms
6,944 KB
testcase_24 AC 8 ms
6,944 KB
testcase_25 AC 62 ms
11,012 KB
testcase_26 AC 10 ms
6,944 KB
testcase_27 AC 47 ms
9,216 KB
testcase_28 AC 35 ms
7,680 KB
testcase_29 AC 15 ms
6,940 KB
testcase_30 AC 63 ms
11,108 KB
testcase_31 AC 19 ms
6,944 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp:36:1: warning: ISO C++ forbids declaration of 'main' with no type [-Wreturn-type]
   36 | main()
      | ^~~~

ソースコード

diff #

#include<iostream>
using namespace std;
#include<vector>
struct UF{
	int n;
	vector<int>parent,rank;
	UF(int n_=0):n(n_),parent(n_),rank(n_,1)
	{
		for(int i=0;i<n_;i++)parent[i]=i;
	}
	int find(int a)
	{
		return parent[a]!=a?parent[a]=find(parent[a]):a;
	}
	bool same(int a,int b)
	{
		return find(a)==find(b);
	}
	bool unite(int a,int b)
	{
		a=find(a),b=find(b);
		if(a==b)return false;
		if(rank[a]<rank[b])
		{
			parent[a]=b;
			rank[b]+=rank[a];
		}
		else
		{
			parent[b]=a;
			rank[a]+=rank[b];
		}
		return true;
	}
};
main()
{
	int N,P;
	cin>>N>>P;
	UF uf(N+1);
	for(int i=2;i<=N;i++)
	{
		for(int j=i;j+i<=N;j+=i)uf.unite(j,j+i);
	}
	cout<<uf.rank[uf.find(P)]<<endl;
}
0