結果
| 問題 | No.1917 LCMST |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2022-05-07 03:25:31 |
| 言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 952 bytes |
| コンパイル時間 | 986 ms |
| コンパイル使用メモリ | 84,988 KB |
| 実行使用メモリ | 6,464 KB |
| 最終ジャッジ日時 | 2024-07-06 07:17:12 |
| 合計ジャッジ時間 | 13,192 ms |
|
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 7 WA * 35 |
コンパイルメッセージ
main.cpp:8:1: warning: ISO C++ forbids declaration of 'main' with no type [-Wreturn-type]
8 | main()
| ^~~~
ソースコード
#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])
{
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;
}