結果

問題 No.2709 1975 Powers
ユーザー Today03Today03
提出日時 2024-03-31 20:37:58
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 960 ms / 2,000 ms
コード長 1,373 bytes
コンパイル時間 2,542 ms
コンパイル使用メモリ 212,640 KB
実行使用メモリ 24,020 KB
最終ジャッジ日時 2024-09-30 21:22:06
合計ジャッジ時間 15,885 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,820 KB
testcase_01 AC 1 ms
6,816 KB
testcase_02 AC 272 ms
22,272 KB
testcase_03 AC 428 ms
14,336 KB
testcase_04 AC 851 ms
19,968 KB
testcase_05 AC 575 ms
17,792 KB
testcase_06 AC 181 ms
9,344 KB
testcase_07 AC 95 ms
20,992 KB
testcase_08 AC 610 ms
22,016 KB
testcase_09 AC 741 ms
19,456 KB
testcase_10 AC 116 ms
21,120 KB
testcase_11 AC 143 ms
10,752 KB
testcase_12 AC 519 ms
24,020 KB
testcase_13 AC 918 ms
22,784 KB
testcase_14 AC 269 ms
12,928 KB
testcase_15 AC 616 ms
23,648 KB
testcase_16 AC 373 ms
12,032 KB
testcase_17 AC 117 ms
14,208 KB
testcase_18 AC 541 ms
23,808 KB
testcase_19 AC 748 ms
18,176 KB
testcase_20 AC 289 ms
23,148 KB
testcase_21 AC 643 ms
22,016 KB
testcase_22 AC 960 ms
22,268 KB
testcase_23 AC 675 ms
18,304 KB
testcase_24 AC 391 ms
12,032 KB
testcase_25 AC 648 ms
17,792 KB
testcase_26 AC 721 ms
19,584 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#ifdef LOCAL
#include "./debug.cpp"
#else
#define debug(...)
#define print_line
#endif
using namespace std;
using ll = long long;

ll pow_mod(ll x, ll n, ll mod) {
    ll ret = 1;
    while (n > 0) {
        if (n & 1) {
            ret = ret * x % mod;
        }
        x = x * x % mod;
        n >>= 1;
    }
    return ret;
}

const vector<int> E = {10, 9, 7, 5};

int main() {
    int N, P, Q;
    cin >> N >> P >> Q;
    vector<ll> A(N);
    for (int i = 0; i < N; i++) {
        cin >> A[i];
    }
    sort(A.begin(), A.end());
    vector<vector<ll>> B(N, vector<ll>(4));
    for (int i = 0; i < N; i++) {
        for (int j = 0; j < 4; j++) {
            B[i][j] = pow_mod(E[j], A[i], P);
        }
    }

    vector<vector<vector<ll>>> dp(2, vector<vector<ll>>(P, vector<ll>(5, 0)));
    dp[0][0][0] = 1;
    for (int i = 0; i < N; i++) {
        for (int j = 0; j < P; j++) {
            for (int k = 0; k < 5; k++) {
                dp[1 - i % 2][j][k] += dp[i % 2][j][k];
                if (k == 4) {
                    continue;
                }
                dp[1 - i % 2][(j + B[i][k]) % P][k + 1] += dp[i % 2][j][k];
            }
        }
        for (int j = 0; j < P; j++) {
            for (int k = 0; k < 5; k++) {
                dp[i % 2][j][k] = 0;
            }
        }
    }

    cout << dp[N % 2][Q][4] << endl;
}
0