結果

問題 No.2075 GCD Subsequence
ユーザー Nzt3Nzt3
提出日時 2022-09-24 03:03:45
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 272 ms / 4,000 ms
コード長 1,200 bytes
コンパイル時間 2,187 ms
コンパイル使用メモリ 204,824 KB
実行使用メモリ 11,776 KB
最終ジャッジ日時 2024-06-01 18:40:59
合計ジャッジ時間 8,865 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 20 ms
11,008 KB
testcase_01 AC 20 ms
10,880 KB
testcase_02 AC 20 ms
11,008 KB
testcase_03 AC 20 ms
11,008 KB
testcase_04 AC 20 ms
10,880 KB
testcase_05 AC 20 ms
11,008 KB
testcase_06 AC 20 ms
11,008 KB
testcase_07 AC 20 ms
11,008 KB
testcase_08 AC 133 ms
11,520 KB
testcase_09 AC 207 ms
11,776 KB
testcase_10 AC 139 ms
11,392 KB
testcase_11 AC 179 ms
11,520 KB
testcase_12 AC 156 ms
11,648 KB
testcase_13 AC 119 ms
11,264 KB
testcase_14 AC 176 ms
11,520 KB
testcase_15 AC 126 ms
11,392 KB
testcase_16 AC 133 ms
11,392 KB
testcase_17 AC 205 ms
11,648 KB
testcase_18 AC 263 ms
11,776 KB
testcase_19 AC 263 ms
11,648 KB
testcase_20 AC 263 ms
11,776 KB
testcase_21 AC 263 ms
11,776 KB
testcase_22 AC 262 ms
11,648 KB
testcase_23 AC 263 ms
11,776 KB
testcase_24 AC 263 ms
11,648 KB
testcase_25 AC 263 ms
11,776 KB
testcase_26 AC 262 ms
11,648 KB
testcase_27 AC 262 ms
11,648 KB
testcase_28 AC 272 ms
11,776 KB
testcase_29 AC 20 ms
11,008 KB
testcase_30 AC 20 ms
10,880 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

const int mod=998244353;

int main() {
  ios::sync_with_stdio(false);
  cin.tie(nullptr);
  int N;
  cin>>N;
  vector<int>A(N);
  for(int &i:A)cin>>i;
  vector<unsigned>cnt(1000001);
  unsigned ans=0;
  for(int i=0;i<N;i++){
    if(A[i]==1){
      ++ans;
      continue;
    }
    int p=A[i];
    vector<int>d;
    for(int j=2;j*j<=p;j++){
      if(p%j==0){
        d.push_back(j);
        while(p%j==0)p/=j;
      }
    }
    if(p!=1)d.push_back(p);
    int s=1;
    for(int j=1;j<1<<d.size();j++){
      int k=1;
      for(int l=0;l<d.size();l++){
        if(j>>l&1)k*=d[l];
      }
      if(__popcount(j)%2==1)s=min(s+cnt[k],s+cnt[k]-mod);
      else s=min(s+mod-cnt[k],s-cnt[k]);
    }
    for(int j=1;j<1<<d.size();j++){
      int k=1;
      for(int l=0;l<d.size();l++){
        if(j>>l&1)k*=d[l];
      }
      cnt[k]=min(s+cnt[k],s+cnt[k]-mod);
    }
  }
  vector<int>hurui(1000001);
  for(int i=2;i<=1000000;i++){
    if(hurui[i]!=0)continue;
    for(int j=i;j<=1000000;j+=i)++hurui[j];
  }
  for(int i=2;i<=1000000;i++){
    if(hurui[i]%2)ans=min(ans+cnt[i],ans+cnt[i]-mod);
    else ans=min(ans+mod-cnt[i],ans-cnt[i]);
  }
  cout<<ans<<'\n';
}
0