結果
問題 | No.2756 GCD Teleporter |
ユーザー | otoshigo |
提出日時 | 2024-05-11 19:06:28 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,940 bytes |
コンパイル時間 | 2,566 ms |
コンパイル使用メモリ | 208,852 KB |
実行使用メモリ | 13,756 KB |
最終ジャッジ日時 | 2024-05-11 19:06:36 |
合計ジャッジ時間 | 7,768 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 5 ms
13,756 KB |
testcase_01 | AC | 5 ms
6,940 KB |
testcase_02 | AC | 4 ms
6,940 KB |
testcase_03 | AC | 5 ms
6,944 KB |
testcase_04 | WA | - |
testcase_05 | TLE | - |
testcase_06 | -- | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
testcase_26 | -- | - |
testcase_27 | -- | - |
testcase_28 | -- | - |
testcase_29 | -- | - |
testcase_30 | -- | - |
testcase_31 | -- | - |
testcase_32 | -- | - |
testcase_33 | -- | - |
testcase_34 | -- | - |
testcase_35 | -- | - |
testcase_36 | -- | - |
testcase_37 | -- | - |
testcase_38 | -- | - |
testcase_39 | -- | - |
ソースコード
#include<bits/stdc++.h> using namespace std; using ll=long long; #define all(v) v.begin(),v.end() #define rall(v) v.rbegin(),v.rend() template<class T> bool chmax(T &a, T b){if (a < b){a = b;return true;} else return false;} template<class T> bool chmin(T &a, T b){if (a > b){a = b;return true;} else return false;} struct union_find { public: explicit union_find() {} explicit union_find(int N) : n(N), par(N, -1), siz(N, 1) {} int find(int x) { assert(0 <= x && x < n); if (par[x] == -1) return x; par[x] = find(par[x]); return par[x]; } int same(int x, int y) { assert(0 <= x && x < n); assert(0 <= y && y < n); return find(x) == find(y); } int size(int x) { assert(0 <= x && x < n); return siz[find(x)]; } bool unite(int x, int y) { assert(0 <= x && x < n); assert(0 <= y && y < n); x = find(x); y = find(y); if (x == y) return false; if (siz[x] < siz[y]) std::swap(x, y); siz[x] += siz[y]; par[y] = x; return true; } private: int n; std::vector<int> par, siz; }; const int M=200'000; int main(){ ios::sync_with_stdio(false); cin.tie(nullptr); int N; cin>>N; vector<int>A(N); for(int i=0;i<N;i++)cin>>A[i]; union_find uf(N); vector<int>P; vector<bool>is_prime(M+1,true); is_prime[1]=false; for(int p=2;p<=M;p++){ if(!is_prime[p])continue; P.push_back(p); for(int i=2*p;i<=M;i+=p){ is_prime[i]=false; } } for(auto p:P){ vector<int>v; for(int i=0;i<N;i++){ if(A[i]%p==0){ v.push_back(i); } } int l=v.size(); for(int i=0;i<l-1;i++){ uf.unite(v[i],v[i+1]); } } ll ans=1LL<<60; for(auto p:P){ int at=-1; for(int i=0;i<N;i++){ if(A[i]%p==0){ at=i; break; } } if(at!=-1){ chmin(ans,(ll)(N-uf.size(at))*p); }else{ chmin(ans,(ll)N*p); } } cout<<ans<<"\n"; }