結果

問題 No.1946 ロッカーの問題
ユーザー monnumonnu
提出日時 2022-05-20 22:02:04
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 509 ms / 3,000 ms
コード長 1,206 bytes
コンパイル時間 3,973 ms
コンパイル使用メモリ 234,272 KB
実行使用メモリ 6,144 KB
最終ジャッジ日時 2024-09-20 08:09:55
合計ジャッジ時間 7,704 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 509 ms
6,128 KB
testcase_03 AC 370 ms
6,144 KB
testcase_04 AC 497 ms
6,000 KB
testcase_05 AC 311 ms
5,452 KB
testcase_06 AC 378 ms
5,852 KB
testcase_07 AC 266 ms
5,376 KB
testcase_08 AC 90 ms
5,376 KB
testcase_09 AC 324 ms
5,888 KB
testcase_10 AC 269 ms
5,376 KB
testcase_11 AC 7 ms
5,376 KB
testcase_12 AC 139 ms
5,376 KB
testcase_13 AC 2 ms
5,376 KB
testcase_14 AC 2 ms
5,376 KB
testcase_15 AC 25 ms
5,376 KB
testcase_16 AC 2 ms
5,376 KB
testcase_17 AC 122 ms
5,376 KB
testcase_18 AC 302 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
#include <atcoder/all>
using namespace atcoder;
using ll=long long;
using Graph=vector<vector<int>>;
#define MAX 3000
//#define MOD 1000000007
#define MOD 998244353
#define INF 1000000000
//#define INF 1000000000000000000

int main(){
  int N,M;
  cin>>N>>M;
  vector<int> A(M);
  vector<int> wrong(N+1,0);
  for(int i=0;i<M;i++){
    cin>>A[i];
    wrong[A[i]]=1;
  }

  vector<int> open(N+1,0);
  for(int i=1;i<=N;i++){
    vector<int> divd;
    for(int j=1;j*j<=i;j++){
      if(i%j==0){
        divd.push_back(j);
        divd.push_back(i/j);
      }
    }
    sort(divd.begin(),divd.end());
    divd.erase(unique(divd.begin(),divd.end()),divd.end());

    for(int d:divd){
      open[d]=1-open[d];
    }
  }

  vector<int> ans;
  for(int i=N;i>0;i--){
    if(wrong[i]!=open[i]){
      ans.push_back(i);
      vector<int> divd;
      for(int j=1;j*j<=i;j++){
        if(i%j==0){
          divd.push_back(j);
          divd.push_back(i/j);
        }
      }
      sort(divd.begin(),divd.end());
      divd.erase(unique(divd.begin(),divd.end()),divd.end());

      for(int d:divd){
        wrong[d]=1-wrong[d];
      }
    }
  }

  cout<<ans.size()<<'\n';
}
0