結果

問題 No.2756 GCD Teleporter
ユーザー 沙耶花沙耶花
提出日時 2024-05-10 22:09:29
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 366 ms / 2,000 ms
コード長 1,021 bytes
コンパイル時間 5,152 ms
コンパイル使用メモリ 269,716 KB
実行使用メモリ 29,056 KB
最終ジャッジ日時 2024-05-10 22:09:41
合計ジャッジ時間 11,412 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,944 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 2 ms
6,944 KB
testcase_04 AC 14 ms
6,940 KB
testcase_05 AC 61 ms
9,112 KB
testcase_06 AC 171 ms
19,636 KB
testcase_07 AC 138 ms
16,136 KB
testcase_08 AC 126 ms
15,148 KB
testcase_09 AC 107 ms
13,520 KB
testcase_10 AC 161 ms
17,992 KB
testcase_11 AC 196 ms
22,076 KB
testcase_12 AC 43 ms
7,308 KB
testcase_13 AC 214 ms
23,036 KB
testcase_14 AC 198 ms
21,532 KB
testcase_15 AC 45 ms
7,336 KB
testcase_16 AC 110 ms
13,388 KB
testcase_17 AC 132 ms
15,732 KB
testcase_18 AC 41 ms
7,260 KB
testcase_19 AC 219 ms
23,428 KB
testcase_20 AC 267 ms
22,016 KB
testcase_21 AC 122 ms
11,828 KB
testcase_22 AC 216 ms
22,788 KB
testcase_23 AC 33 ms
6,948 KB
testcase_24 AC 212 ms
18,236 KB
testcase_25 AC 229 ms
19,488 KB
testcase_26 AC 225 ms
21,852 KB
testcase_27 AC 207 ms
22,880 KB
testcase_28 AC 109 ms
13,248 KB
testcase_29 AC 164 ms
18,372 KB
testcase_30 AC 212 ms
22,808 KB
testcase_31 AC 93 ms
11,584 KB
testcase_32 AC 366 ms
22,280 KB
testcase_33 AC 138 ms
10,536 KB
testcase_34 AC 28 ms
6,944 KB
testcase_35 AC 196 ms
22,740 KB
testcase_36 AC 153 ms
22,288 KB
testcase_37 AC 2 ms
6,944 KB
testcase_38 AC 132 ms
23,524 KB
testcase_39 AC 157 ms
29,056 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <stdio.h>
#include <bits/stdc++.h>
#include <atcoder/all>
using namespace atcoder;
using mint = modint998244353;
using namespace std;
#define rep(i,n) for (int i = 0; i < (n); ++i)
#define Inf32 1000000001
#define Inf64 1000000000000000001


int main(){
   
  int n;
  cin>>n;
  vector<vector<int>> ps(n);
  vector<int> p;
  rep(i,n){
   int a;
   cin>>a;
   for(int j=2;j*j<=a;j++){
      if(a%j==0){
         ps[i].push_back(j);
         p.push_back(j);
         while(a%j==0){
            a/=j;
         }
      }
   }
   if(a>1){
      ps[i].push_back(a);
p.push_back(a);
   }

  }
  sort(p.begin(),p.end());
  p.erase(unique(p.begin(),p.end()),p.end());
  if(p.size()==0){
   cout<<n*2<<endl;
   return 0;
  }
  int m = p.size();
  dsu D(n+m);
   rep(i,n){
       for(int j:ps[i]){
         int k = lower_bound(p.begin(),p.end(),j)-p.begin();
         D.merge(i,n+k);
       }
   }
   long long G = D.groups().size();
   long long ans = (G-1) * p[0];
  ans = min(ans,G * 2);
  cout<<ans<<endl;
	return 0;
}
0