結果

問題 No.1917 LCMST
ユーザー kotatsugamekotatsugame
提出日時 2022-05-07 03:28:38
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 969 bytes
コンパイル時間 1,610 ms
コンパイル使用メモリ 84,292 KB
実行使用メモリ 6,308 KB
最終ジャッジ日時 2023-09-20 12:01:58
合計ジャッジ時間 15,051 ms
ジャッジサーバーID
(参考情報)
judge14 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 3 ms
4,376 KB
testcase_01 AC 3 ms
4,380 KB
testcase_02 AC 4 ms
4,376 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 AC 3 ms
4,376 KB
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 AC 267 ms
6,000 KB
testcase_30 AC 267 ms
6,092 KB
testcase_31 AC 268 ms
5,992 KB
testcase_32 AC 267 ms
5,964 KB
testcase_33 AC 267 ms
5,924 KB
testcase_34 AC 256 ms
4,500 KB
testcase_35 AC 257 ms
4,416 KB
testcase_36 AC 257 ms
4,376 KB
testcase_37 AC 271 ms
5,912 KB
testcase_38 WA -
testcase_39 WA -
testcase_40 WA -
testcase_41 WA -
testcase_42 WA -
testcase_43 WA -
testcase_44 WA -
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp:8:1: 警告: ISO C++ では型の無い ‘main’ の宣言を禁止しています [-Wreturn-type]
    8 | main()
      | ^~~~

ソースコード

diff #

#include<iostream>
#include<vector>
#include<atcoder/dsu>
using namespace std;
int N;
bool ex[1<<17];
pair<int,int>mn[1<<17];
main()
{
	cin>>N;
	for(int i=1;i<=100000;i++)mn[i].first=1e9;
	long ans=0;
	for(int i=0;i<N;i++)
	{
		int A;cin>>A;
		if(ex[A])ans+=A;
		else ex[A]=true;
	}
	for(int g=100000;g>=1;g--)
	{
		int prv=-1,prv2=-1;
		for(int k=g;k<=100000;k+=g)if(ex[k])
		{
			if(prv!=-1)
			{
				if(prv2==-1)prv2=k;
				mn[k]=min(mn[k],make_pair(prv/g,g));
			}
			else prv=k;
		}
		if(prv!=-1&&prv2!=-1)mn[prv]=min(mn[prv],make_pair(prv2/g,g));
	}
	vector<pair<long,pair<int,int> > >E;
	for(int i=1;i<=100000;i++)if(ex[i]&&mn[i].second!=0)
	{
		E.push_back(make_pair((long)i*mn[i].first,make_pair(i,mn[i].first*mn[i].second)));
	}
	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