結果

問題 No.2709 1975 Powers
ユーザー Tatsu_mrTatsu_mr
提出日時 2024-03-31 15:30:12
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 505 ms / 2,000 ms
コード長 1,481 bytes
コンパイル時間 2,393 ms
コンパイル使用メモリ 209,680 KB
実行使用メモリ 348,032 KB
最終ジャッジ日時 2024-09-30 20:49:07
合計ジャッジ時間 12,567 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 161 ms
81,304 KB
testcase_01 AC 162 ms
81,312 KB
testcase_02 AC 241 ms
148,220 KB
testcase_03 AC 327 ms
204,408 KB
testcase_04 AC 488 ms
303,996 KB
testcase_05 AC 398 ms
254,720 KB
testcase_06 AC 248 ms
125,052 KB
testcase_07 AC 187 ms
90,236 KB
testcase_08 AC 358 ms
242,940 KB
testcase_09 AC 441 ms
274,944 KB
testcase_10 AC 187 ms
91,768 KB
testcase_11 AC 204 ms
104,960 KB
testcase_12 AC 306 ms
207,100 KB
testcase_13 AC 489 ms
321,636 KB
testcase_14 AC 253 ms
142,844 KB
testcase_15 AC 343 ms
234,872 KB
testcase_16 AC 331 ms
173,104 KB
testcase_17 AC 194 ms
95,356 KB
testcase_18 AC 312 ms
213,376 KB
testcase_19 AC 465 ms
277,368 KB
testcase_20 AC 237 ms
141,820 KB
testcase_21 AC 360 ms
241,404 KB
testcase_22 AC 496 ms
348,032 KB
testcase_23 AC 492 ms
290,428 KB
testcase_24 AC 400 ms
195,964 KB
testcase_25 AC 484 ms
282,360 KB
testcase_26 AC 505 ms
308,088 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

vector<long long> v = {10LL, 9LL, 7LL, 5LL};
int siz = 2000010;

int main() {
    int n;
    long long p, q;
    cin >> n >> p >> q;
    vector<long long> a(n);
    for (int i = 0; i < n; i++) {
        cin >> a[i];
    }
    vector<vector<long long>> mods(4, vector<long long>(siz, 1LL));
    for (int i = 0; i < 4; i++) {
        for (int j = 1; j < siz; j++) {
            mods[i][j] = mods[i][j - 1] * v[i] % p;
        }
    }
    sort(a.begin(), a.end());
    vector<vector<long long>> ans1(n, vector<long long>(p));
    for (int i = 0; i < n; i++) {
        for (int j = 0; j < n; j++) {
            for (int k = 0; k < n; k++) {
                if (i < j && j < k) {
                    long long res = ((mods[0][a[i]] + mods[1][a[j]]) % p + mods[2][a[k]]) % p;
                    ans1[k][res]++;
                }
            }
        }
    }
    vector<vector<long long>> ans2(n, vector<long long>(p));
    for (int i = 0; i < n; i++) {
        ans2[i][mods[3][a[i]]]++;
    }
    for (int i = n - 2; i >= 0; i--) {
        for (int j = 0; j < p; j++) {
            ans2[i][j] += ans2[i + 1][j];
        }
    }
    long long ans = 0LL;
    for (int i = 0; i < n - 1; i++) {
        for (int j = 0; j < p; j++) {
            int i2 = i + 1;
            int j2 = q - j;
            if (j2 < 0) {
                j2 += p;
            }
            ans += ans1[i][j] * ans2[i2][j2];
        }
    }
    cout << ans << endl;
}
0