結果

問題 No.990 N×Mマス計算(Kの倍数)
ユーザー ゆきのんゆきのん
提出日時 2020-03-14 02:44:13
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 1,925 bytes
コンパイル時間 1,843 ms
コンパイル使用メモリ 174,100 KB
実行使用メモリ 16,992 KB
最終ジャッジ日時 2023-08-15 11:25:05
合計ジャッジ時間 8,510 ms
ジャッジサーバーID
(参考情報)
judge13 / judge15
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
4,380 KB
testcase_01 AC 2 ms
4,380 KB
testcase_02 AC 1 ms
4,376 KB
testcase_03 AC 1 ms
4,376 KB
testcase_04 AC 2 ms
4,380 KB
testcase_05 AC 2 ms
4,380 KB
testcase_06 AC 2 ms
4,380 KB
testcase_07 AC 2 ms
4,380 KB
testcase_08 AC 2 ms
4,380 KB
testcase_09 AC 2 ms
4,376 KB
testcase_10 AC 49 ms
7,528 KB
testcase_11 AC 36 ms
4,376 KB
testcase_12 TLE -
testcase_13 AC 26 ms
4,380 KB
testcase_14 AC 54 ms
4,384 KB
testcase_15 AC 31 ms
4,380 KB
testcase_16 AC 64 ms
8,720 KB
testcase_17 AC 25 ms
4,376 KB
testcase_18 TLE -
testcase_19 AC 405 ms
4,384 KB
testcase_20 AC 174 ms
16,992 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;
#define fs first
#define sc second
#define pb push_back
#define mp make_pair
#define eb emplace_back
#define ALL(A) A.begin(),A.end()
#define RALL(A) A.rbegin(),A.rend()
typedef long long LL;
typedef pair<int,int> P;
template<class T> inline bool chmax(T& a, T b) { if (a < b) { a = b; return 1; } return 0; }
template<class T> inline bool chmin(T& a, T b) { if (a > b) { a = b; return 1; } return 0; }
template<typename T> T gcd(T a,T b){return b?gcd(b,a%b):a;}
const LL mod=1000000007;
const LL LINF=1LL<<62;
const int INF=1<<30;
int dx[]={1,0,-1,0,1,-1,1,-1};
int dy[]={0,1,0,-1,1,-1,-1,1};


int main(){
    LL n,m,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];
        b[i] %= k;
    }
    for (int i = 0; i < n; i++) {
        cin >> a[i];
        a[i] %= k;
    }
    if(op == '+'){
        map<int,LL> B;
        for (int i = 0; i < m; i++) {
            B[b[i]]++;
        }
        LL ans = 0;
        for (int i = 0; i < n; i++) {
            ans += B[(k - a[i])%k];
        }
        cout << ans << endl;
    }
    else{
        for (int i = 0; i < m; i++) {
            b[i] = gcd(k, b[i]);
            if(b[i] == k) b[i] = 0;
        }
        for (int i = 0; i < n; i++) {
            a[i] = gcd(k, a[i]);
            if(a[i] == k) a[i] = 0;
        }
        LL cntb = 0, cnta = 0;
        map<int,LL> B;
        LL ans = 0;
        for (int i = 0; i < m; i++) {
            if(b[i] == 0) cntb++;
            else B[k / gcd(k,b[i])]++;
        }
        for (int i = 0; i < n; i++) {
            if(a[i] == 0) cnta++;
            else{
                for(auto m : B){
                    if(a[i] % m.fs == 0) ans += m.sc;
                }
            }
        }
        ans += cnta * (m - cntb) + cntb * (n - cnta) + cnta * cntb;
        cout << ans << endl;
    }
    return 0;
}

0