結果
問題 | No.2178 Payable Magic Items |
ユーザー | mine691 |
提出日時 | 2022-09-27 02:34:01 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
(最新)
AC
(最初)
|
実行時間 | - |
コード長 | 1,209 bytes |
コンパイル時間 | 2,550 ms |
コンパイル使用メモリ | 210,540 KB |
実行使用メモリ | 67,352 KB |
最終ジャッジ日時 | 2024-05-08 13:18:34 |
合計ジャッジ時間 | 13,739 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | AC | 2 ms
5,376 KB |
testcase_03 | AC | 435 ms
44,272 KB |
testcase_04 | AC | 2 ms
5,376 KB |
testcase_05 | AC | 553 ms
58,952 KB |
testcase_06 | WA | - |
testcase_07 | AC | 2 ms
5,376 KB |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | WA | - |
testcase_26 | WA | - |
ソースコード
#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, unordered_map<int, int> &dp, unordered_map<int, int> &mp, unordered_map<int, int> &used) { int e = enc(s); if (dp.find(e) != dp.end()) { 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); unordered_map<int, int> mp, used, dp; for (int i = 0; i < N; i++) { cin >> s[i]; mp[enc(s[i])]++; } 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'; }