結果

問題 No.1917 LCMST
ユーザー kotatsugamekotatsugame
提出日時 2022-05-07 03:34:53
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 448 ms / 4,000 ms
コード長 678 bytes
コンパイル時間 2,512 ms
コンパイル使用メモリ 83,688 KB
実行使用メモリ 37,816 KB
最終ジャッジ日時 2024-07-06 07:29:22
合計ジャッジ時間 17,699 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 4 ms
5,248 KB
testcase_01 AC 3 ms
5,376 KB
testcase_02 AC 3 ms
5,376 KB
testcase_03 AC 5 ms
5,376 KB
testcase_04 AC 5 ms
5,376 KB
testcase_05 AC 4 ms
5,376 KB
testcase_06 AC 5 ms
5,376 KB
testcase_07 AC 5 ms
5,376 KB
testcase_08 AC 4 ms
5,376 KB
testcase_09 AC 409 ms
20,020 KB
testcase_10 AC 411 ms
20,272 KB
testcase_11 AC 406 ms
20,012 KB
testcase_12 AC 392 ms
20,000 KB
testcase_13 AC 315 ms
11,768 KB
testcase_14 AC 400 ms
20,008 KB
testcase_15 AC 298 ms
7,524 KB
testcase_16 AC 314 ms
11,764 KB
testcase_17 AC 337 ms
19,844 KB
testcase_18 AC 357 ms
19,832 KB
testcase_19 AC 301 ms
7,548 KB
testcase_20 AC 295 ms
5,552 KB
testcase_21 AC 304 ms
7,724 KB
testcase_22 AC 294 ms
5,544 KB
testcase_23 AC 293 ms
5,544 KB
testcase_24 AC 304 ms
7,724 KB
testcase_25 AC 293 ms
6,940 KB
testcase_26 AC 298 ms
6,940 KB
testcase_27 AC 300 ms
7,984 KB
testcase_28 AC 303 ms
8,880 KB
testcase_29 AC 448 ms
37,636 KB
testcase_30 AC 443 ms
36,608 KB
testcase_31 AC 447 ms
36,572 KB
testcase_32 AC 446 ms
37,816 KB
testcase_33 AC 444 ms
37,368 KB
testcase_34 AC 280 ms
6,944 KB
testcase_35 AC 280 ms
6,940 KB
testcase_36 AC 281 ms
6,940 KB
testcase_37 AC 444 ms
37,408 KB
testcase_38 AC 439 ms
36,896 KB
testcase_39 AC 437 ms
36,340 KB
testcase_40 AC 435 ms
36,288 KB
testcase_41 AC 439 ms
37,344 KB
testcase_42 AC 432 ms
37,084 KB
testcase_43 AC 284 ms
6,940 KB
testcase_44 AC 280 ms
6,940 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp:7:1: warning: ISO C++ forbids declaration of 'main' with no type [-Wreturn-type]
    7 | main()
      | ^~~~

ソースコード

diff #

#include<iostream>
#include<vector>
#include<atcoder/dsu>
using namespace std;
int N;
bool ex[1<<17];
main()
{
	cin>>N;
	long ans=0;
	for(int i=0;i<N;i++)
	{
		int A;cin>>A;
		if(ex[A])ans+=A;
		else ex[A]=true;
	}
	vector<pair<long,pair<int,int> > >E;
	for(int g=100000;g>=1;g--)
	{
		int prv=-1;
		for(int k=g;k<=100000;k+=g)if(ex[k])
		{
			if(prv!=-1)
			{
				E.push_back(make_pair((long)k*prv/g,make_pair(k,prv)));
			}
			else prv=k;
		}
	}
	sort(E.begin(),E.end());
	atcoder::dsu uf(100001);
	for(pair<long,pair<int,int> >e:E)
	{
		if(!uf.same(e.second.first,e.second.second))
		{
			uf.merge(e.second.first,e.second.second);
			ans+=e.first;
		}
	}
	cout<<ans<<endl;
}
0