結果
問題 | No.2178 Payable Magic Items |
ユーザー | mine691 |
提出日時 | 2022-09-27 02:30:15 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
(最新)
AC
(最初)
|
実行時間 | - |
コード長 | 1,297 bytes |
コンパイル時間 | 2,450 ms |
コンパイル使用メモリ | 205,716 KB |
実行使用メモリ | 10,112 KB |
最終ジャッジ日時 | 2024-05-08 13:18:59 |
合計ジャッジ時間 | 7,756 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | RE | - |
testcase_03 | RE | - |
testcase_04 | RE | - |
testcase_05 | RE | - |
testcase_06 | RE | - |
testcase_07 | RE | - |
testcase_08 | RE | - |
testcase_09 | RE | - |
testcase_10 | WA | - |
testcase_11 | RE | - |
testcase_12 | RE | - |
testcase_13 | RE | - |
testcase_14 | RE | - |
testcase_15 | RE | - |
testcase_16 | RE | - |
testcase_17 | RE | - |
testcase_18 | RE | - |
testcase_19 | RE | - |
testcase_20 | RE | - |
testcase_21 | RE | - |
testcase_22 | RE | - |
testcase_23 | RE | - |
testcase_24 | RE | - |
testcase_25 | RE | - |
testcase_26 | RE | - |
ソースコード
#include <bits/stdc++.h> using namespace std; using Int = long long; constexpr static int mod = 1e9 + 7; constexpr static int inf = (1 << 30) - 1; constexpr static Int infll = (1LL << 61) - 1; int Competitive_Programming = (ios_base::sync_with_stdio(false), cin.tie(nullptr), cout << fixed << setprecision(15), 0); int enc(string s) { int ret = 0; for (int i = 0; i < s.size(); i++) ret *= 4, ret += s[i] - 'A'; return ret; } int dfs(string &s, vector<int> &dp, vector<int> &mp, vector<int> &used) { int e = enc(s); if (dp[e] != -1) { int ret = (used[e] ? 0 : dp[e] + mp[e]); used[e] = 1; return ret; } int ret = 0; for (int i = 0; i < s.size(); i++) { if (s[i] == 'D') continue; s[i]++; ret += dfs(s, dp, mp, used); if (used[enc(s)] == 0 and mp[enc(s)] == 1) ret++; used[enc(s)] = 1; s[i]--; } return dp[e] = ret; } int main() { int N, K; cin >> N >> K; vector<string> s(N); vector<int> mp(1 << (2 * K)); assert(1 <= N and N <= 1e5); assert(1 <= K and K <= 10); for (int i = 0; i < N; i++) { cin >> s[i]; mp[enc(s[i])]++; assert(s[i].size() == K); } vector<int> used(1 << (2 * K)), dp(1 << (2 * K), -1); int ans = 0; for (int i = 0; i < N; i++) { ans += dfs(s[i], dp, mp, used); dp[enc(s[i])] = 0; } cout << ans << '\n'; }