結果

問題 No.990 N×Mマス計算(Kの倍数)
ユーザー monnumonnu
提出日時 2021-04-17 14:50:05
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 1,627 ms / 2,000 ms
コード長 1,445 bytes
コンパイル時間 4,069 ms
コンパイル使用メモリ 234,016 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-07-03 22:31:30
合計ジャッジ時間 9,236 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,812 KB
testcase_02 AC 2 ms
6,944 KB
testcase_03 AC 2 ms
6,940 KB
testcase_04 AC 2 ms
6,944 KB
testcase_05 AC 2 ms
6,940 KB
testcase_06 AC 2 ms
6,940 KB
testcase_07 AC 2 ms
6,944 KB
testcase_08 AC 2 ms
6,940 KB
testcase_09 AC 2 ms
6,940 KB
testcase_10 AC 36 ms
6,944 KB
testcase_11 AC 42 ms
6,940 KB
testcase_12 AC 1,627 ms
6,940 KB
testcase_13 AC 27 ms
6,944 KB
testcase_14 AC 65 ms
6,940 KB
testcase_15 AC 35 ms
6,940 KB
testcase_16 AC 45 ms
6,944 KB
testcase_17 AC 29 ms
6,940 KB
testcase_18 AC 1,613 ms
6,940 KB
testcase_19 AC 898 ms
6,940 KB
testcase_20 AC 111 ms
6,940 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 MOD 998244353
#define INF 1000000000000000000
#define MAX 1000000

ll gcd(ll a,ll b){
  while(a%b!=0){
    ll tmp=a%b;
    a=b;
    b=tmp;
  }
  return b;
}

int main(){
  int N,M;
  ll K;
  cin>>N>>M>>K;
  char op;
  cin>>op;
  vector<ll> B(M),A(N);
  for(int i=0;i<M;i++){
    cin>>B[i];
  }
  for(int i=0;i<N;i++){
    cin>>A[i];
  }

  if(op=='+'){
    for(int i=0;i<N;i++){
      A[i]%=K;
    }
    for(int i=0;i<M;i++){
      B[i]%=K;
    }
    sort(B.begin(),B.end());
    ll ans=0;
    for(int i=0;i<N;i++){
      ll x=(K-A[i])%K;
      int left=lower_bound(B.begin(),B.end(),x)-B.begin();
      int right=upper_bound(B.begin(),B.end(),x)-B.begin();
      ans+=(ll)(right-left);
    }
    cout<<ans<<endl;
  }else{
    vector<ll> divd;
    for(ll i=1;i*i<=K;i++){
      if(K%i==0){
        divd.push_back(i);
        if(K/i!=i){
          divd.push_back(K/i);
        }
      }
    }
    sort(divd.begin(),divd.end());
    int n=divd.size();
    vector<int> cnt(n);
    for(int i=0;i<n;i++){
      for(int j=0;j<M;j++){
        if(B[j]%divd[i]==0){
          cnt[i]++;
        }
      }
    }
    ll ans=0;
    for(int i=0;i<N;i++){
      ll x=gcd(K,A[i]);
      int k=lower_bound(divd.begin(),divd.end(),x)-divd.begin();
      ans+=(ll)cnt[n-1-k];
    }
    cout<<ans<<endl;
  }
}
0