結果

問題 No.2075 GCD Subsequence
ユーザー Nzt3Nzt3
提出日時 2022-09-24 03:03:45
言語 C++17(gcc12)
(gcc 12.3.0 + boost 1.87.0)
結果
AC  
実行時間 282 ms / 4,000 ms
コード長 1,200 bytes
コンパイル時間 2,553 ms
コンパイル使用メモリ 204,816 KB
実行使用メモリ 11,852 KB
最終ジャッジ日時 2024-12-22 05:47:30
合計ジャッジ時間 9,431 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 19 ms
11,008 KB
testcase_01 AC 19 ms
11,008 KB
testcase_02 AC 19 ms
10,880 KB
testcase_03 AC 19 ms
10,932 KB
testcase_04 AC 19 ms
11,040 KB
testcase_05 AC 19 ms
11,008 KB
testcase_06 AC 20 ms
11,008 KB
testcase_07 AC 19 ms
11,008 KB
testcase_08 AC 134 ms
11,452 KB
testcase_09 AC 212 ms
11,852 KB
testcase_10 AC 145 ms
11,484 KB
testcase_11 AC 185 ms
11,648 KB
testcase_12 AC 162 ms
11,648 KB
testcase_13 AC 123 ms
11,392 KB
testcase_14 AC 178 ms
11,528 KB
testcase_15 AC 128 ms
11,432 KB
testcase_16 AC 138 ms
11,520 KB
testcase_17 AC 214 ms
11,776 KB
testcase_18 AC 272 ms
11,776 KB
testcase_19 AC 271 ms
11,776 KB
testcase_20 AC 270 ms
11,776 KB
testcase_21 AC 269 ms
11,732 KB
testcase_22 AC 268 ms
11,776 KB
testcase_23 AC 266 ms
11,776 KB
testcase_24 AC 270 ms
11,648 KB
testcase_25 AC 269 ms
11,776 KB
testcase_26 AC 269 ms
11,776 KB
testcase_27 AC 269 ms
11,648 KB
testcase_28 AC 282 ms
11,776 KB
testcase_29 AC 19 ms
11,076 KB
testcase_30 AC 20 ms
10,984 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