結果
問題 | No.2709 1975 Powers |
ユーザー | tobbie |
提出日時 | 2024-04-27 16:01:25 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 1,015 bytes |
コンパイル時間 | 2,116 ms |
コンパイル使用メモリ | 178,380 KB |
実行使用メモリ | 17,096 KB |
最終ジャッジ日時 | 2024-11-15 19:32:28 |
合計ジャッジ時間 | 77,995 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
10,496 KB |
testcase_01 | AC | 2 ms
8,576 KB |
testcase_02 | TLE | - |
testcase_03 | TLE | - |
testcase_04 | TLE | - |
testcase_05 | TLE | - |
testcase_06 | TLE | - |
testcase_07 | TLE | - |
testcase_08 | TLE | - |
testcase_09 | TLE | - |
testcase_10 | TLE | - |
testcase_11 | TLE | - |
testcase_12 | TLE | - |
testcase_13 | TLE | - |
testcase_14 | TLE | - |
testcase_15 | TLE | - |
testcase_16 | TLE | - |
testcase_17 | TLE | - |
testcase_18 | TLE | - |
testcase_19 | TLE | - |
testcase_20 | TLE | - |
testcase_21 | TLE | - |
testcase_22 | TLE | - |
testcase_23 | TLE | - |
testcase_24 | TLE | - |
testcase_25 | TLE | - |
testcase_26 | TLE | - |
ソースコード
#include <bits/stdc++.h> using namespace std; #define rep(i, j, n) for (int i = (int)j; i < (int)(n); i++) using ll = long long int; using vi = vector<int>; using vvi = vector<vi>; using vvvi = vector<vvi>; int main() { int N, P, Q; cin >> N >> P >> Q; vi A(N); rep(i, 0, N) cin >> A[i]; sort(A.begin(), A.end()); vi o = {10, 9, 7, 5}; vvi a(N, vector<int> (4)); rep(i, 0, N) { rep(j, 0, i+1) { int p = 1; rep(k, 0, A[i]) p = ((ll)p * (ll)o[j]) % P; a[i][j] = p; } } vvvi y(P, vvi (N, vi (4, -1))); auto dfs = [&](auto dfs, int x, int n, int depth, int ans) { x = (x + a[n][depth]) % P; y[x][n][depth] = x; if (depth == 3) { if (x % P == Q) return ans + 1; else return ans; } rep(i, n+1, N) { if (y[x][i][depth+1] >= 0) ans = y[x][i][depth+1]; else ans = dfs(dfs, x, i, depth+1, ans); } return ans; }; int ans = 0; rep(i, 0, N) ans += dfs(dfs, 0, i, 0, 0); cout << ans << endl; return 0; }