結果
| 問題 |
No.1917 LCMST
|
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2022-05-07 03:34:53 |
| 言語 | C++14 (gcc 13.3.0 + boost 1.87.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 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 42 |
コンパイルメッセージ
main.cpp:7:1: warning: ISO C++ forbids declaration of 'main' with no type [-Wreturn-type]
7 | main()
| ^~~~
ソースコード
#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;
}